예제 #1
0
파일: Keyboard.cs 프로젝트: Zulkir/Beholder
 public bool KeyPressed(Keys key)
 {
     return downCurr[(int)key] && !downPrev[(int)key] && !masked[(int)key];
 }
예제 #2
0
파일: Keyboard.cs 프로젝트: Zulkir/Beholder
 public bool KeyToggled(Keys key)
 {
     return toggled[(int)key];
 }
예제 #3
0
파일: Keyboard.cs 프로젝트: Zulkir/Beholder
 public bool KeyDown(Keys key)
 {
     return downCurr[(int)key] && !masked[(int)key];
 }
예제 #4
0
파일: Keyboard.cs 프로젝트: Zulkir/Beholder
 public bool KeyReleased(Keys key)
 {
     return !downCurr[(int)key] && downPrev[(int)key] && !masked[(int)key];
 }