Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core/src/orxonox/tools/Timer.cc @ 853

Last change on this file since 853 was 852, checked in by landauf, 17 years ago

removed some includes of CoreIncludes.h from other .h files (included in .cc only)

File size: 356 bytes
Line 
1#include "core/CoreIncludes.h"
2#include "Timer.h"
3
4namespace 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.