1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:07:23 +08:00
osu-lazer/osu.Game.Rulesets.Catch/CatchInputManager.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
725 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
using System.ComponentModel;
2017-08-11 15:11:46 +08:00
using osu.Framework.Input.Bindings;
using osu.Game.Rulesets.UI;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Catch
{
public class CatchInputManager : RulesetInputManager<CatchAction>
{
2017-08-13 09:36:57 +08:00
public CatchInputManager(RulesetInfo ruleset)
: base(ruleset, 0, SimultaneousBindingMode.Unique)
{
}
}
2018-04-13 17:19:50 +08:00
public enum CatchAction
{
[Description("Move left")]
MoveLeft,
2019-02-28 12:31:40 +08:00
[Description("Move right")]
MoveRight,
2019-02-28 12:31:40 +08:00
[Description("Engage dash")]
2018-01-12 17:35:28 +08:00
Dash,
}
}