mirror of
https://github.com/osukey/osukey.git
synced 2025-05-09 07:37:22 +09:00
29 lines
986 B
C#
29 lines
986 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Configuration;
|
|
using osu.Framework.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Options.Sections.Graphics
|
|
{
|
|
public class RendererOptions : OptionsSubsection
|
|
{
|
|
protected override string Header => "Renderer";
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(FrameworkConfigManager config)
|
|
{
|
|
// NOTE: Compatability mode omitted
|
|
Children = new Drawable[]
|
|
{
|
|
// TODO: this needs to be a custom dropdown at some point
|
|
new OptionEnumDropdown<FrameSync>
|
|
{
|
|
LabelText = "Frame limiter",
|
|
Bindable = config.GetBindable<FrameSync>(FrameworkConfig.FrameSync)
|
|
},
|
|
};
|
|
}
|
|
}
|
|
} |