Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 31, 2018, 10:56:46 AM (7 years ago)
Author:
ottka
Message:

level added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/OrxoKart_HS18/src/modules/orxokart/OrxoKartTile.cc

    r12057 r12062  
    2828
    2929/**
    30     @file HoverWall.cc
    31     @brief Represents one Wall piece in the Hover Game
     30    @file OrxoKartTile.cc
     31    @brief Represents one Wall piece in the OrxoKart Game
    3232*/
    3333
    34 #include "HoverWall.h"
     34#include "OrxoKartTile.h"
    3535
    3636#include "core/CoreIncludes.h"
     
    4040namespace orxonox
    4141{
    42     RegisterClass(HoverWall);
     42    RegisterClass(OrxoKartTile);
    4343
    44     HoverWall::HoverWall(Context* context) : StaticEntity(context)
     44    OrxoKartTile::OrxoKartTile(Context* context) : StaticEntity(context)
    4545    {
    46         RegisterObject(HoverWall);
     46        RegisterObject(OrxoKartTile);
    4747
    4848        this->model_ = nullptr;
     
    5858        Destructor.
    5959    */
    60     HoverWall::~HoverWall()
     60    OrxoKartTile::~OrxoKartTile()
    6161    {
    6262        if (this->isInitialized())
     
    7171    /**
    7272    @brief
    73         Initializes a HoverWall
     73        Initializes a OrxoKartTile
    7474    @param x
    7575        x-Coordinate of the Square that the Wall is attached to, 0-9, Origin is Bottom left
     
    8383            Wall on the right side (1) or on top (2) of this square, 0-1       
    8484    */
    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)
    8686    {
    8787        int xSize_, zSize_, xPos_, zPos_;
Note: See TracChangeset for help on using the changeset viewer.