Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/OrxoBlox_FS19/src/modules/OrxoBlox/OrxoBloxStones.cc @ 12251

Last change on this file since 12251 was 12251, checked in by ahuwyler, 5 years ago

Now All Files included!

File size: 467 bytes
Line 
1#include "OrxoBloxStones.h"
2#include "core/CoreIncludes.h"
3#include "core/XMLPort.h"
4
5#include "OrxoBlox.h"
6
7namespace orxonox
8{
9    RegisterClass(OrxoBloxStones);
10    /**
11    @brief
12        Constructor. Registers and initializes the object.
13    */
14    OrxoBloxStones::OrxoBloxStones(Context* context) : StaticEntity(context)
15    {
16        RegisterObject(OrxoBloxStones);
17
18        this->size_ = 10.0f;
19        this->health_ = 10;
20        this->delay_ = false;
21    }
22}
Note: See TracBrowser for help on using the repository browser.