1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 21:27:24 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/DebugSection.cs

25 lines
698 B
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-02-26 17:06:59 +08:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Graphics;
using osu.Game.Graphics;
using osu.Game.Overlays.Settings.Sections.Debug;
2017-02-26 17:06:59 +08:00
namespace osu.Game.Overlays.Settings.Sections
2017-02-26 17:06:59 +08:00
{
public class DebugSection : SettingsSection
2017-02-26 17:06:59 +08:00
{
public override string Header => "Debug";
public override FontAwesome Icon => FontAwesome.fa_bug;
public DebugSection()
{
Children = new Drawable[]
{
new GeneralSettings(),
new GCSettings(),
2017-02-26 17:06:59 +08:00
};
}
}
2018-01-05 19:21:19 +08:00
}