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