Exemplo n.º 1
0
 public void Register(KeyBindingInputManager manager) => insertDefaults(manager.DefaultKeyBindings);
Exemplo n.º 2
0
 public GlobalKeyBindingsSection(KeyBindingInputManager manager)
 {
     Add(new DefaultBindingsSubsection(manager));
 }
Exemplo n.º 3
0
 public DefaultBindingsSubsection(KeyBindingInputManager manager)
     : base(null)
 {
     Defaults = manager.DefaultKeyBindings;
 }
Exemplo n.º 4
0
        public GlobalKeyBindingsSection(KeyBindingInputManager manager, string name)
        {
            this.name = name;

            Defaults = manager.DefaultKeyBindings;
        }