mirror of
https://github.com/osukey/osukey.git
synced 2025-05-05 13:47:19 +09:00
21 lines
413 B
C#
21 lines
413 B
C#
using System;
|
|
using osu.Framework.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public class InputOptions : OptionsSection
|
|
{
|
|
public InputOptions()
|
|
{
|
|
Header = "Input";
|
|
Children = new Drawable[]
|
|
{
|
|
new MouseOptions(),
|
|
new KeyboardOptions(),
|
|
new OtherInputOptions(),
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|