Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/story_entities/campaign_data.h @ 6407

Last change on this file since 6407 was 6407, checked in by patrick, 18 years ago

network: the worlds get loaded again in the new framework

File size: 826 bytes
Line 
1/*!
2 * @file campaign_data.h
3 * definition of the campaign data tank
4 */
5
6#ifndef _CAMPAIGN_DATA_H
7#define _CAMPAIGN_DATA_H
8
9
10#include "data_tank.h"
11#include <list>
12
13class StoryEntity;
14
15//! A class that contains the data of the Campaign object
16class CampaignData : public DataTank
17{
18
19  public:
20    CampaignData(const TiXmlElement* root);
21    virtual ~CampaignData();
22
23    void loadParams(const TiXmlElement* root);
24
25    void loadData(const TiXmlElement* root);
26
27    void addStoryEntity(StoryEntity* se);
28
29    StoryEntity* getFirstLevel();
30    StoryEntity* getNextLevel();
31
32
33  private:
34    StoryEntity*                  currentEntity;                //!< reference to the currently used StoryEntity
35    std::list<StoryEntity*>       storyEntities;                //!< list of story entities
36};
37
38
39#endif /* _CAMPAIGN_DATA_H */
40
Note: See TracBrowser for help on using the repository browser.