repo.or.cz
/
exterlulz-musk.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add Lua sources
[exterlulz-musk.git]
/
src
/
musk
/
timer.h
blob
614ba42c1943bc631f8b2a2278701d56846190a1
1
#ifndef MUSK_TIMER_H_
2
#define MUSK_TIMER_H_
3
4
#include <stdint.h>
5
6
namespace
musk
{
7
8
class
Timer
9
{
10
public
:
11
Timer
();
12
13
uint32_t
ticks
()
const
;
14
15
private
:
16
bool
stopped_
;
17
uint32_t
ticks_
;
18
};
19
20
}
// namespace musk
21
22
#endif
// MUSK_TIMER_H_