mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
InputManager -> Container where KeyBindings are involved
This commit is contained in:
@ -12,7 +12,7 @@ namespace osu.Game.Overlays.KeyBinding
|
||||
public override FontAwesome Icon => FontAwesome.fa_osu_hot;
|
||||
public override string Header => "Global";
|
||||
|
||||
public GlobalKeyBindingsSection(GlobalKeyBindingInputManager manager)
|
||||
public GlobalKeyBindingsSection(GlobalKeyBindingContainer manager)
|
||||
{
|
||||
Add(new DefaultBindingsSubsection(manager));
|
||||
Add(new InGameKeyBindingsSubsection(manager));
|
||||
@ -23,7 +23,7 @@ namespace osu.Game.Overlays.KeyBinding
|
||||
{
|
||||
protected override string Header => string.Empty;
|
||||
|
||||
public DefaultBindingsSubsection(GlobalKeyBindingInputManager manager)
|
||||
public DefaultBindingsSubsection(GlobalKeyBindingContainer manager)
|
||||
: base(null)
|
||||
{
|
||||
Defaults = manager.GlobalKeyBindings;
|
||||
@ -34,7 +34,7 @@ namespace osu.Game.Overlays.KeyBinding
|
||||
{
|
||||
protected override string Header => "In Game";
|
||||
|
||||
public InGameKeyBindingsSubsection(GlobalKeyBindingInputManager manager) : base(null)
|
||||
public InGameKeyBindingsSubsection(GlobalKeyBindingContainer manager) : base(null)
|
||||
{
|
||||
Defaults = manager.InGameKeyBindings;
|
||||
}
|
||||
|
Reference in New Issue
Block a user