Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 7, 2015, 2:32:47 PM (9 years ago)
Author:
meierman
Message:

Finished with comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/hoverHS15/src/modules/hover/HoverWall.cc

    r10926 r10930  
    2121 *
    2222 *   Author:
    23  *      Fabien Vultier
     23 *      Manuel Meier
    2424 *   Co-authors:
    2525 *      ...
     
    2929/**
    3030    @file HoverWall.cc
    31     @brief All platforms in this minigame inherit from this class. The basic functions of a platform (interact with figure) is implemented here. Special functions are implemented in the specialized classes.
     31    @brief Represents one Wall piece in the Hover Game
    3232*/
    3333
     
    5454    }
    5555
     56
     57    /**
     58    @brief
     59        Constructor of a HoverWall
     60    @param x
     61        x-Coordinate of the Square that the Wall is attached to, 0-9, Origin is Bottom left
     62    @param y
     63        y-Coordinate of the Square that the Wall is attached to, 0-9, Origin is Bottom left
     64    @param orientation
     65            Wall on the right side (1) or on top (2) of this square, 0-1       
     66    */
    5667    HoverWall::HoverWall(Context* context, int x, int y, int orientation) : StaticEntity(context)
    5768    {
     
    101112    }
    102113
    103     //xml port for loading height and width of the platform
     114    //xml port for loading height and width of the platform, unused
    104115    void HoverWall::XMLPort(Element& xmlelement, XMLPort::Mode mode)
    105116    {
    106117        SUPER(HoverWall, XMLPort, xmlelement, mode);
    107 
    108        // XMLPortParam(HoverWall, "height", setHeight, getHeight, xmlelement, mode);
    109         //XMLPortParam(HoverWall, "width", setWidth, getWidth, xmlelement, mode);
    110118    }
    111119
Note: See TracChangeset for help on using the changeset viewer.