// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. namespace FlaxEditor.Content.Settings { /// /// The base class for all the settings assets. /// public abstract class SettingsBase { } partial class GraphicsSettings { /// /// Initializes a new instance of the . /// public GraphicsSettings() { // Initialize PostFx settings with default options (C# structs don't support it) PostProcessSettings = FlaxEngine.PostProcessSettings.Default; } } }