osu/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
759 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 09:19:50 +00:00
using System.ComponentModel;
2022-08-13 10:02:29 +00:00
using osu.Framework.Allocation;
2017-08-11 07:11:46 +00:00
using osu.Framework.Input.Bindings;
using osu.Game.Rulesets.UI;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Rulesets.Catch
{
2022-08-13 10:02:29 +00:00
[Cached]
public partial class CatchInputManager : RulesetInputManager<CatchAction>
{
2017-08-13 01:36:57 +00:00
public CatchInputManager(RulesetInfo ruleset)
: base(ruleset, 0, SimultaneousBindingMode.Unique)
{
}
}
2018-04-13 09:19:50 +00:00
public enum CatchAction
{
[Description("Move left")]
MoveLeft,
2019-02-28 04:31:40 +00:00
[Description("Move right")]
MoveRight,
2019-02-28 04:31:40 +00:00
[Description("Engage dash")]
2018-01-12 09:35:28 +00:00
Dash,
}
}