mirror of
https://github.com/osukey/osukey.git
synced 2025-05-07 22:57:31 +09:00
23 lines
508 B
C#
23 lines
508 B
C#
using System;
|
|
using osu.Framework.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public class GraphicsOptions : OptionsSection
|
|
{
|
|
public GraphicsOptions()
|
|
{
|
|
Header = "Graphics";
|
|
Children = new Drawable[]
|
|
{
|
|
new RendererOptions(),
|
|
new LayoutOptions(),
|
|
new DetailSettings(),
|
|
new MainMenuOptions(),
|
|
new SongSelectGraphicsOptions(),
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|