Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/story_entities/campaign_data.h @ 6424

Last change on this file since 6424 was 6424, checked in by bensch, 18 years ago

orxonox/trunk: merged the branche network back to the trunk
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/network . -r 6351:HEAD
no conflicts

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.