Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2014
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #pragma once
  2.  
  3. typedef struct g_timer {
  4. Uint32 start_ticks;
  5. Uint32 ticks;
  6. int paused;
  7. } g_timer;
  8.  
  9. int timer_pause(g_timer*);
  10. Uint32 timer_ticks(g_timer*);
  11. Uint32 timer_reset(g_timer*);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement