A game framework written with osu! in mind.
at master 682 B view raw
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. 2// See the LICENCE file in the repository root for full licence text. 3 4namespace osu.Framework.Configuration 5{ 6 public class FrameworkDebugConfigManager : IniConfigManager<DebugSetting> 7 { 8 protected override string Filename => null; 9 10 public FrameworkDebugConfigManager() 11 : base(null) 12 { 13 } 14 15 protected override void InitialiseDefaults() 16 { 17 base.InitialiseDefaults(); 18 19 SetDefault(DebugSetting.BypassFrontToBackPass, false); 20 } 21 } 22 23 public enum DebugSetting 24 { 25 BypassFrontToBackPass, 26 } 27}