mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 06:29:36 +08:00
25 lines
663 B
C#
25 lines
663 B
C#
// Copyright (c) 2007-2017 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.Osu
|
|
{
|
|
public class OsuInputManager : RulesetInputManager<OsuAction>
|
|
{
|
|
public OsuInputManager(RulesetInfo ruleset) : base(ruleset, 0, SimultaneousBindingMode.Unique)
|
|
{
|
|
}
|
|
}
|
|
|
|
public enum OsuAction
|
|
{
|
|
[Description("Left Button")]
|
|
LeftButton,
|
|
[Description("Right Button")]
|
|
RightButton
|
|
}
|
|
}
|