made a ball move
[physics.git] / src / ticks.h
CommitLineData
ad9f1fb6
PG
1#ifndef TICKS_H
2#define TICKS_H
3
4/// ***** Public Methods *****
5
6// returns the current seconds from program start
7long int tickCountSec();
8
9// returns the current milliseconds from program start
10long int tickCountMilli();
11
12// returns the current microseconds from program start
13long int tickCountMicro();
14
ad9f1fb6 15#endif // TICKS_H