add Lua sources
[exterlulz-musk.git] / src / musk / timer.h
blob614ba42c1943bc631f8b2a2278701d56846190a1
1 #ifndef MUSK_TIMER_H_
2 #define MUSK_TIMER_H_
4 #include <stdint.h>
6 namespace musk {
8 class Timer
10 public:
11 Timer();
13 uint32_t ticks() const;
15 private:
16 bool stopped_;
17 uint32_t ticks_;
20 } // namespace musk
22 #endif // MUSK_TIMER_H_