- Timestamp:
- Oct 31, 2018, 10:56:46 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/OrxoKart_HS18/src/modules/orxokart/OrxoKartTile.cc
r12057 r12062 28 28 29 29 /** 30 @file HoverWall.cc31 @brief Represents one Wall piece in the HoverGame30 @file OrxoKartTile.cc 31 @brief Represents one Wall piece in the OrxoKart Game 32 32 */ 33 33 34 #include " HoverWall.h"34 #include "OrxoKartTile.h" 35 35 36 36 #include "core/CoreIncludes.h" … … 40 40 namespace orxonox 41 41 { 42 RegisterClass( HoverWall);42 RegisterClass(OrxoKartTile); 43 43 44 HoverWall::HoverWall(Context* context) : StaticEntity(context)44 OrxoKartTile::OrxoKartTile(Context* context) : StaticEntity(context) 45 45 { 46 RegisterObject( HoverWall);46 RegisterObject(OrxoKartTile); 47 47 48 48 this->model_ = nullptr; … … 58 58 Destructor. 59 59 */ 60 HoverWall::~HoverWall()60 OrxoKartTile::~OrxoKartTile() 61 61 { 62 62 if (this->isInitialized()) … … 71 71 /** 72 72 @brief 73 Initializes a HoverWall73 Initializes a OrxoKartTile 74 74 @param x 75 75 x-Coordinate of the Square that the Wall is attached to, 0-9, Origin is Bottom left … … 83 83 Wall on the right side (1) or on top (2) of this square, 0-1 84 84 */ 85 void HoverWall::init(int x, int y, int cellSize, int cellHeight, int orientation)85 void OrxoKartTile::init(int x, int y, int cellSize, int cellHeight, int orientation) 86 86 { 87 87 int xSize_, zSize_, xPos_, zPos_;
Note: See TracChangeset
for help on using the changeset viewer.