Control.h 304 B

12345678910111213141516171819
  1. #ifndef KEY_H
  2. #define KEY_H
  3. void controlInit();
  4. void controlTick();
  5. void keyPress(int key);
  6. void keyRelease(int key);
  7. int keyIsDown(int key);
  8. int keyIsJustDown(int key);
  9. void mousePress(int button);
  10. void mouseRelease(int button);
  11. int mouseIsDown(int button);
  12. int mouseIsJustDown(int button);
  13. #endif