source:
code/branches/pickups2/src/orxonox/objects/pickup/Turbo.h
@
2217
Last change on this file since 2217 was 2202, checked in by dsommer, 16 years ago | |
---|---|
File size: 287 bytes |
Rev | Line | |
---|---|---|
[2202] | 1 | #include "tools/Timer.h" |
2 | ||
3 | namespace orxonox | |
4 | { | |
5 | class _OrxonoxExport Turbo: public Item | |
6 | { | |
7 | ||
8 | public: | |
9 | void setSpeedBoost(int boost, float duration, Spaceship* ship) | |
10 | void unsetSpeedBoost(int boost, Spaceship* ship) | |
11 | private: | |
12 | Timer<Turbo> turbotimer_; | |
13 | float boost; | |
14 | float duration; | |
15 | } | |
16 | } |
Note: See TracBrowser
for help on using the repository browser.