mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 06:07:28 +08:00
18 lines
399 B
C#
18 lines
399 B
C#
|
using System;
|
|||
|
using osu.Framework.Graphics;
|
|||
|
|
|||
|
namespace osu.Game.Overlays.Options
|
|||
|
{
|
|||
|
public class GameplayOptions : OptionsSection
|
|||
|
{
|
|||
|
public GameplayOptions()
|
|||
|
{
|
|||
|
Header = "Gameplay";
|
|||
|
Children = new Drawable[]
|
|||
|
{
|
|||
|
new GeneralGameplayOptions(),
|
|||
|
new SongSelectGameplayOptions(),
|
|||
|
};
|
|||
|
}
|
|||
|
}
|
|||
|
}
|