mirror of
https://github.com/ppy/osu
synced 2024-12-20 05:42:54 +00:00
24 lines
535 B
C#
24 lines
535 B
C#
using System;
|
|
using osu.Framework.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public class GraphicsOptions : OptionsSection
|
|
{
|
|
protected override string Header => "Graphics";
|
|
|
|
public GraphicsOptions()
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new RendererOptions(),
|
|
new LayoutOptions(),
|
|
new DetailOptions(),
|
|
new MainMenuOptions(),
|
|
new SongSelectGraphicsOptions(),
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|