mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 11:27:24 +08:00
28 lines
766 B
C#
28 lines
766 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using osu.Framework.Input.Bindings;
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
namespace osu.Game.Rulesets.Osu
|
|
{
|
|
public class OsuInputManager : RulesetInputManager<OsuAction>
|
|
{
|
|
public IEnumerable<OsuAction> PressedActions => KeyBindingContainer.PressedActions;
|
|
|
|
public OsuInputManager(RulesetInfo ruleset) : base(ruleset, 0, SimultaneousBindingMode.Unique)
|
|
{
|
|
}
|
|
}
|
|
|
|
public enum OsuAction
|
|
{
|
|
[Description("Left Button")]
|
|
LeftButton,
|
|
[Description("Right Button")]
|
|
RightButton
|
|
}
|
|
}
|