1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 06:38:27 +08:00
osu-lazer/osu.Game.Rulesets.Taiko/TaikoInputManager.cs

30 lines
773 B
C#
Raw Permalink Normal View History

2018-04-13 18:19:50 +09:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.ComponentModel;
using osu.Framework.Input.Bindings;
using osu.Game.Rulesets.UI;
namespace osu.Game.Rulesets.Taiko
{
public class TaikoInputManager : RulesetInputManager<TaikoAction>
{
public TaikoInputManager(RulesetInfo ruleset)
: base(ruleset, 0, SimultaneousBindingMode.Unique)
{
}
}
public enum TaikoAction
{
2018-09-15 07:30:11 -07:00
[Description("Left (rim)")]
2018-04-13 18:19:50 +09:00
LeftRim,
2018-09-15 07:30:11 -07:00
[Description("Left (centre)")]
2018-04-13 18:19:50 +09:00
LeftCentre,
2018-09-15 07:30:11 -07:00
[Description("Right (centre)")]
2018-04-13 18:19:50 +09:00
RightCentre,
2018-09-15 07:30:11 -07:00
[Description("Right (rim)")]
2018-04-13 18:19:50 +09:00
RightRim
}
}