1
0

fixing svn directory

git-svn-id: http://mc-server.googlecode.com/svn/trunk@58 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
admin@omencraft.com
2011-11-04 20:13:10 +00:00
parent 12bfd97612
commit c10ba99d15
9 changed files with 1767 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#include "cTimer.h"
double cTimer::diffclock(clock_t clock1,clock_t clock2)
{
double diffticks=clock1-clock2;
double diffms=(diffticks*1)/CLOCKS_PER_SEC;
return diffms;
}