Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5773 in orxonox.OLD for trunk/src/story_entities/campaign.h


Ignore:
Timestamp:
Nov 25, 2005, 1:07:55 AM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: changed to std::list in campaign

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/story_entities/campaign.h

    r4598 r5773  
    55#include "stdincl.h"
    66#include "story_entity.h"
    7 
     7#include <list>
    88
    99class World;
    1010class TiXmlElement;
    11 template<class T> class tList;
    1211
    1312class Campaign : public StoryEntity {
     
    4140 private:
    4241  //ListTemplate<StoryEntity>* entities;
    43   tList<StoryEntity>* entities;
    44   bool running;
     42   std::list<StoryEntity*> entities;
     43   bool running;
    4544
    46   StoryEntity* getStoryEntity(int storyID);
     45   StoryEntity* getStoryEntity(int storyID);
    4746};
    4847
Note: See TracChangeset for help on using the changeset viewer.