#include "OrxoBloxWall.h" #include "core/CoreIncludes.h" #include "core/XMLPort.h" #include "OrxoBlox.h" namespace orxonox { RegisterClass(OrxoBloxWall); /** @brief Constructor. Registers and initializes the object. */ OrxoBloxWall::OrxoBloxWall(Context* context) : StaticEntity(context) { RegisterObject(OrxoBloxWall); this->health_ = 10; this->delay_ = false; } }