mirror of
https://github.com/osukey/osukey.git
synced 2025-05-05 13:47:19 +09:00
23 lines
507 B
C#
23 lines
507 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 DetailOptions(),
|
|
new MainMenuOptions(),
|
|
new SongSelectGraphicsOptions(),
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|