Rev | Line | |
---|
[10095] | 1 | /* |
---|
| 2 | * DodgeRace.cc |
---|
| 3 | * |
---|
| 4 | * Created on: Oct 15, 2014 |
---|
| 5 | * Author: sriedel |
---|
| 6 | */ |
---|
| 7 | |
---|
| 8 | #include "DodgeRace.h" |
---|
| 9 | |
---|
| 10 | #include "core/CoreIncludes.h" |
---|
| 11 | #include "core/EventIncludes.h" |
---|
| 12 | #include "core/command/Executor.h" |
---|
| 13 | #include "core/config/ConfigValueIncludes.h" |
---|
| 14 | |
---|
| 15 | #include "gamestates/GSLevel.h" |
---|
| 16 | #include "chat/ChatManager.h" |
---|
| 17 | |
---|
| 18 | namespace orxonox |
---|
| 19 | { |
---|
| 20 | RegisterUnloadableClass(DodgeRace); |
---|
| 21 | |
---|
| 22 | DodgeRace::DodgeRace() |
---|
| 23 | { |
---|
| 24 | init(); |
---|
| 25 | |
---|
| 26 | } |
---|
| 27 | |
---|
| 28 | void DodgeRace::init() |
---|
| 29 | { |
---|
| 30 | level = 0; |
---|
| 31 | point = 0; |
---|
| 32 | lives = 1; |
---|
| 33 | |
---|
| 34 | } |
---|
| 35 | |
---|
| 36 | DodgeRace::~DodgeRace() { |
---|
| 37 | // TODO Auto-generated destructor stub |
---|
| 38 | } |
---|
| 39 | |
---|
| 40 | } /* namespace orxonox */ |
---|
Note: See
TracBrowser
for help on using the repository browser.