mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 05:27:40 +08: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";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|