(20111213)

This commit is contained in:
2011-12-13 17:00:00 +01:00
commit a80dda1a85
45 changed files with 2001 additions and 0 deletions

17
Time.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef _TIME_H_
#define _TIME_H_
/////////////////////////////
// Time_GetTime
//
// Gets the current time in usecs.
long long Time_GetTime();
/////////////////////////////
// Time_Pause
//
// Pauses the execution for t usecs.
void Time_Pause(int pausa);
#endif