Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/OrxoBlox_FS19/src/modules/OrxoBlox/OrxoBloxWall.cc @ 12278

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

Class Wall is created

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