mirror of
https://github.com/osukey/osukey.git
synced 2025-05-20 21:17:32 +09: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(),
|
|
};
|
|
}
|
|
}
|
|
} |