// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Framework.Configuration { public class FrameworkDebugConfigManager : IniConfigManager { protected override string Filename => null; public FrameworkDebugConfigManager() : base(null) { } protected override void InitialiseDefaults() { base.InitialiseDefaults(); SetDefault(DebugSetting.BypassFrontToBackPass, false); } } public enum DebugSetting { BypassFrontToBackPass, } }