1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 06:07:28 +08:00
osu-lazer/osu.Game/Overlays/Options/GameplayOptions.cs

18 lines
399 B
C#
Raw Normal View History

2016-11-03 12:26:49 +08:00
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(),
};
}
}
}