Changeset 6402 in orxonox.OLD for branches/network/src/story_entities/campaign.h
- Timestamp:
- Jan 3, 2006, 11:04:50 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/story_entities/campaign.h
r6387 r6402 9 9 10 10 #include "story_entity.h" 11 #include <list>12 11 13 12 … … 40 39 }; 41 40 42 43 44 //! A class that contains the data of the Campaign object45 class CampaignData : public BaseObject46 {47 48 public:49 CampaignData(const TiXmlElement* root);50 virtual ~CampaignData();51 52 void loadParams(const TiXmlElement* root);53 54 void addStoryEntity(StoryEntity* se);55 56 StoryEntity* getFirstLevel();57 StoryEntity* getNextLevel();58 59 60 private:61 void loadParamsWorldList(const TiXmlElement* root);62 63 64 private:65 StoryEntity* currentEntity; //!< reference to the currently used StoryEntity66 std::list<StoryEntity*> storyEntities; //!< list of story entities67 };68 69 41 #endif /* _CAMPAIGN_H */
Note: See TracChangeset
for help on using the changeset viewer.