Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. #include <cstdlib>
  2.  
  3. typedef int Uint8;
  4.  
  5. Uint8 *keystates = NULL;
  6.  
  7. bool key_pressed(Uint8 key)
  8. {
  9.     return (keystates[key]);
  10. }
  11.  
  12. int main()
  13. {
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement