Example #1
0
 public void registerIsNownKey(Keys key,handelKey func)
 {
     this.mIsDownKeyMaps.Add(key, func);
 }
Example #2
0
 public void registerXBOXButtonIsDownAndWasUp(Buttons button, handelKey func)
 {
     this.mXBOXisPressedAndWasNot.Add(button, func);
 }
Example #3
0
 public void registerXBOXButtonPress(Buttons button, handelKey func)
 {
     this.mXBOXButtonPress.Add(button, func);
 }
Example #4
0
 public void registerIsUpAndWasDown(Keys key, handelKey func)
 {
     this.mIsUpAndWasDownKeyMaps.Add(key, func);
 }