Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 11, 2005, 5:28:38 PM (19 years ago)
Author:
chris
Message:

orxonox/branches/levelloader: Feeble attempt to load anything… neither finished nor useful

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/levelloader/src/story_entities/world.cc

    r3499 r3501  
    3232using namespace std;
    3333
     34
     35World::World( TiXMLElement* root)
     36{
     37        TiXMLElement* element;
     38        // load parameters
     39                // identifier
     40        element = FirstChildrenElement("identifier");
     41        if( element == NULL)
     42        {
     43                PRINTF(ERR)("World created with missing identifier\n");
     44                setStoryID( -1);
     45        }
     46                // file
     47}
    3448
    3549/**
Note: See TracChangeset for help on using the changeset viewer.