Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7370 in orxonox.OLD for trunk/src/story_entities/campaign_data.cc


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/campaign_data.cc

    r7193 r7370  
    5656
    5757/**
    58  * loads the Parameters of a Campaign
     58 * @brief loads the Parameters of a Campaign
    5959 * @param root: The XML-element to load from
    6060 */
    6161void CampaignData::loadParams(const TiXmlElement* root)
    6262{
    63   LoadParamXML(root, "WorldList", this, CampaignData, loadData)
     63  LoadParamXML(root, "WorldList", this, CampaignData, loadDataDyn)
    6464      .describe("A List of Worlds to be loaded in this Campaign");
    6565}
     
    6767
    6868/**
    69  * loads a WorldList
     69 * @brief loads a WorldList
    7070 * @param root: the XML-element to load from
    7171 */
    72 void CampaignData::loadData(const TiXmlElement* root)
     72void CampaignData::loadDataDyn(const TiXmlElement* root)
    7373{
    7474  if( root == NULL)
Note: See TracChangeset for help on using the changeset viewer.