Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/campaign.h @ 3222

Last change on this file since 3222 was 3222, checked in by bensch, 19 years ago

orxonox/trunk: Error → ErrorMessage

File size: 768 bytes
RevLine 
[2636]1
2#ifndef CAMPAIGN_H
3#define CAMPAIGN_H
4
5#include "stdincl.h"
6#include "story_entity.h"
7
8
9class World;
10
11class Campaign : public StoryEntity {
12
13 public:
14  Campaign ();
15  ~Campaign ();
16
17  StoryEntity* currentEntity;
18
[3222]19  virtual ErrorMessage init();
20  virtual ErrorMessage start();
21  virtual ErrorMessage start(int storyID);
22  virtual ErrorMessage stop();
23  virtual ErrorMessage pause();
24  virtual ErrorMessage resume();
[2636]25
[3220]26  virtual void destroy();
27
28  void addEntity(StoryEntity* se, int storyID);
[2636]29  void addEntity(StoryEntity* se);
[3220]30  void removeEntity(int storyID);
[2636]31  void removeEntity(StoryEntity* se);
32 
33  void nextLevel();
34  void previousLevel();
35
36 private:
[2816]37  ListTemplate<StoryEntity>* entities;
[2636]38  bool running;
39
[3220]40  StoryEntity* getStoryEntity(int storyID);
[2636]41};
42
43#endif
Note: See TracBrowser for help on using the repository browser.