oglc/src/clock.c

7 lines
82 B
C

#include "clock.h"
float now()
{
return (float)SDL_GetTicks() / 1000.0;
}