1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 02:57:24 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/Debug/GCSettings.cs

35 lines
1.1 KiB
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:28:01 +08:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Runtime;
using osu.Framework.Allocation;
using osu.Framework.Configuration;
using osu.Framework.Graphics;
namespace osu.Game.Overlays.Settings.Sections.Debug
2017-02-26 17:28:01 +08:00
{
public class GCSettings : SettingsSubsection
2017-02-26 17:28:01 +08:00
{
protected override string Header => "Garbage Collector";
[BackgroundDependencyLoader]
private void load(FrameworkDebugConfigManager config)
{
Children = new Drawable[]
{
new SettingsEnumDropdown<GCLatencyMode>
2017-02-26 17:28:01 +08:00
{
LabelText = "Active mode",
2017-05-19 21:53:08 +08:00
Bindable = config.GetBindable<GCLatencyMode>(DebugSetting.ActiveGCMode)
2017-02-26 17:28:01 +08:00
},
2017-10-21 10:46:06 +08:00
new SettingsButton
2017-02-26 17:28:01 +08:00
{
Text = "Force garbage collection",
Action = GC.Collect
2017-02-26 17:28:01 +08:00
},
};
}
}
}