mirror of
https://github.com/ppy/osu.git
synced 2024-11-14 01:47:25 +08:00
23 lines
737 B
C#
23 lines
737 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
|
|||
|
{
|
|||
|
public RendererOptions()
|
|||
|
{
|
|||
|
Header = "Renderer";
|
|||
|
// 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" },
|
|||
|
};
|
|||
|
}
|
|||
|
}
|
|||
|
}
|