mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 04:49:40 +08:00
24 lines
765 B
C#
24 lines
765 B
C#
using System;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public class RendererOptions : OptionsSubsection
|
|
{
|
|
protected override string Header => "Renderer";
|
|
|
|
public RendererOptions()
|
|
{
|
|
// NOTE: Compatability mode omitted
|
|
Children = new Drawable[]
|
|
{
|
|
new SpriteText { Text = "Frame limiter: TODO dropdown" },
|
|
new BasicCheckBox { LabelText = "Show FPS counter" },
|
|
new BasicCheckBox { LabelText = "Reduce dropped frames" },
|
|
new BasicCheckBox { LabelText = "Detect performance issues" },
|
|
};
|
|
}
|
|
}
|
|
} |