mirror of
https://github.com/osukey/osukey.git
synced 2025-05-05 13:47:19 +09:00
13 lines
206 B
C#
13 lines
206 B
C#
using System;
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public class GraphicsOptions : OptionsSection
|
|
{
|
|
public GraphicsOptions()
|
|
{
|
|
Header = "Graphics";
|
|
}
|
|
}
|
|
}
|
|
|