source:
code/trunk/src/orxonox/tools/Timer.cc
@
884
Last change on this file since 884 was 871, checked in by landauf, 17 years ago | |
---|---|
File size: 356 bytes |
Line | |
---|---|
1 | #include "core/CoreIncludes.h" |
2 | #include "Timer.h" |
3 | |
4 | namespace orxonox |
5 | { |
6 | /** |
7 | @brief Constructor: Sets the default-values. |
8 | */ |
9 | TimerBase::TimerBase() |
10 | { |
11 | RegisterRootObject(TimerBase); |
12 | |
13 | this->interval_ = 0; |
14 | this->bLoop_ = false; |
15 | this->bActive_ = false; |
16 | |
17 | this->time_ = 0; |
18 | } |
19 | } |
Note: See TracBrowser
for help on using the repository browser.