Skip to content

Latest commit

 

History

History
19 lines (19 loc) · 257 Bytes

File metadata and controls

19 lines (19 loc) · 257 Bytes

Usage

StopWatch s;
/* Timed stuff here */
s.tick();
/* Other stuff */
float dt = s.getTimeElapsed();

or

StopWatch s;
/* Other stuff */
s.tick();
/* Timed stuff here */
s.tick();
/* Other stuff */
float dt = s.getTimeElapsed();