Changeset 6387 in orxonox.OLD for branches/network/src/story_entities/campaign.h
- Timestamp:
- Jan 2, 2006, 11:00:14 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/story_entities/campaign.h
r6386 r6387 25 25 26 26 void loadParams(const TiXmlElement* root); 27 void loadWorldListParams(const TiXmlElement* root);28 27 29 virtual ErrorMessage init();30 virtual ErrorMessage start();31 virtual ErrorMessagepause();32 virtual ErrorMessageresume();33 virtual ErrorMessage stop();28 virtual bool start(); 29 virtual bool stop(); 30 virtual bool pause(); 31 virtual bool resume(); 32 virtual void run(); 34 33 35 34 void switchToNextLevel(); … … 44 43 45 44 //! A class that contains the data of the Campaign object 46 class CampaignData : virtualpublic BaseObject45 class CampaignData : public BaseObject 47 46 { 48 47 49 48 public: 50 CampaignData( );49 CampaignData(const TiXmlElement* root); 51 50 virtual ~CampaignData(); 51 52 void loadParams(const TiXmlElement* root); 52 53 53 54 void addStoryEntity(StoryEntity* se); … … 58 59 59 60 private: 61 void loadParamsWorldList(const TiXmlElement* root); 62 63 64 private: 60 65 StoryEntity* currentEntity; //!< reference to the currently used StoryEntity 61 66 std::list<StoryEntity*> storyEntities; //!< list of story entities
Note: See TracChangeset
for help on using the changeset viewer.