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