コード例 #1
0
ファイル: KeyBindingStore.cs プロジェクト: DerpyCrabs/osu
 public void Register(KeyBindingInputManager manager) => insertDefaults(manager.DefaultKeyBindings);
コード例 #2
0
 public GlobalKeyBindingsSection(KeyBindingInputManager manager)
 {
     Add(new DefaultBindingsSubsection(manager));
 }
コード例 #3
0
 public DefaultBindingsSubsection(KeyBindingInputManager manager)
     : base(null)
 {
     Defaults = manager.DefaultKeyBindings;
 }
コード例 #4
0
        public GlobalKeyBindingsSection(KeyBindingInputManager manager, string name)
        {
            this.name = name;

            Defaults = manager.DefaultKeyBindings;
        }