Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 26, 2006, 1:31:01 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: drawLists/tickLists are used, and made some TiXmlElement to const TiXmlElement, also fixed some bugs in the loadWorldEntities-functions from Gameworld and SipleGameMenu

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/story_entities/multi_player_world_data.cc

    r7346 r7370  
    8585 * @param root reference to the xml root element
    8686 */
    87 ErrorMessage MultiPlayerWorldData::loadGUI(TiXmlElement* root)
     87ErrorMessage MultiPlayerWorldData::loadGUI(const TiXmlElement* root)
    8888{
    8989  /* call underlying function */
     
    106106 * @param root reference to the xml root parameter
    107107 */
    108 ErrorMessage MultiPlayerWorldData::loadWorldEntities(TiXmlElement* root)
     108ErrorMessage MultiPlayerWorldData::loadWorldEntities(const TiXmlElement* root)
    109109{
    110110  /* load the spawning points */
    111   TiXmlElement* element = root->FirstChildElement("SpawningPoints");
     111  const TiXmlElement* element = root->FirstChildElement("SpawningPoints");
    112112  if( element == NULL)
    113113  {
     
    244244 * @param root reference to the xml root element
    245245 */
    246 ErrorMessage MultiPlayerWorldData::loadScene(TiXmlElement* root)
     246ErrorMessage MultiPlayerWorldData::loadScene(const TiXmlElement* root)
    247247{
    248248  /* call underlying function */
Note: See TracChangeset for help on using the changeset viewer.