Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3220 in orxonox.OLD for orxonox/trunk/src/story_entity.h


Ignore:
Timestamp:
Dec 19, 2004, 9:09:36 PM (21 years ago)
Author:
patrick
Message:

orxonox/trunk: fixed a lot of bugs with StoryEntity management, also cleared up some old unused code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/story_entity.h

    r2636 r3220  
    1616
    1717  virtual Error init();
    18   virtual Error start(Uint32 storyID);
     18  virtual Error start(int storyID);
    1919  virtual Error start();
    2020  virtual Error stop();
     
    2323
    2424  virtual void load();
     25  virtual void destroy();
    2526
    26   virtual void displayEntityScreen();
    27   virtual void releaseEntityScreen();
     27  virtual void displayLoadScreen();
     28  virtual void releaseLoadScreen();
    2829
    29   void setStoryID(Uint32 storyID);
     30  void setStoryID(int storyID);
    3031  int getStoryID();
    3132
    32   void setNextStoryID(Uint32 nextStoryID);
    33   Uint32 getNextStoryID();
     33  void setNextStoryID(int nextStoryID);
     34  int getNextStoryID();
    3435
    3536
    3637 private:
    37   Uint32 storyID;
    38   Uint32 nextStoryID;
     38  int storyID;
     39  int nextStoryID;
    3940};
    4041
Note: See TracChangeset for help on using the changeset viewer.