Rev | Line | |
---|
[12251] | 1 | #include "OrxoBloxStones.h" |
---|
[12307] | 2 | |
---|
[12251] | 3 | #include "core/CoreIncludes.h" |
---|
| 4 | #include "core/XMLPort.h" |
---|
| 5 | |
---|
| 6 | #include "OrxoBlox.h" |
---|
| 7 | |
---|
| 8 | namespace orxonox |
---|
| 9 | { |
---|
| 10 | RegisterClass(OrxoBloxStones); |
---|
| 11 | /** |
---|
| 12 | @brief |
---|
| 13 | Constructor. Registers and initializes the object. |
---|
| 14 | */ |
---|
| 15 | OrxoBloxStones::OrxoBloxStones(Context* context) : StaticEntity(context) |
---|
| 16 | { |
---|
| 17 | RegisterObject(OrxoBloxStones); |
---|
| 18 | |
---|
[12342] | 19 | this->size_ = 9.0f; |
---|
[12331] | 20 | this->health_ = 1 + static_cast<unsigned int>(rnd(6.0f)); //<! random number between 0 and 7; |
---|
[12251] | 21 | this->delay_ = false; |
---|
| 22 | } |
---|
[12356] | 23 | |
---|
| 24 | unsigned int OrxoBloxStones::getHealth() { |
---|
| 25 | return this->health_; |
---|
| 26 | } |
---|
| 27 | |
---|
| 28 | void OrxoBloxStones::reduceHealth() { |
---|
| 29 | this->health_ -= 1; |
---|
| 30 | } |
---|
[12360] | 31 | |
---|
| 32 | float OrxoBloxStones::getSize() { |
---|
| 33 | return this->size_; |
---|
| 34 | } |
---|
[12251] | 35 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.