Advertisement
chrondog

Untitled

Jan 2nd, 2013
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. bool FirstTime = true;
  2. if(!(GetKeyState(VK_F9) & (1 << 15)))
  3. {
  4.     if(FirstTime)
  5.         //Do code;
  6.     FirstTime = false;
  7. }
  8. else
  9.     FirstTime = true;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement