예제 #1
0
 public void KeyDown(KeypadKey key)
 {
     this.Keys[key.Value] = true;
 }
예제 #2
0
 public void KeyUp(KeypadKey keyboardKey)
 {
     this.Keys[keyboardKey.Value] = false;
 }