Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9500 in orxonox.OLD for branches/proxy/src/world_entities/playable.h


Ignore:
Timestamp:
Jul 27, 2006, 12:15:06 PM (18 years ago)
Author:
bensch
Message:

compiles again, the Playables should now be able to choose their design per team

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/proxy/src/world_entities/playable.h

    r9499 r9500  
    6161  /** @return a List of Events in PEV_* sytle */
    6262  inline const std::vector<int>& getEventList() { return this->events; };
     63  virtual void setTeam(int teamID);
     64
    6365
    6466  // Camera and Playmode
     
    8789  virtual void tick(float dt);
    8890
     91
     92  inline bool beFire() const { return this->bFire; }
     93  inline void fire(bool bF) { this->bFire = bF;}
     94
    8995  // Transformations:
    9096  static Playable::Playmode stringToPlaymode(const std::string& playmode);
    9197  static const std::string& playmodeToString(Playable::Playmode playmode);
    9298  static const std::string playmodeNames[];
    93 
    94   inline bool beFire(){ return this->bFire; }
    95   inline void fire(bool bF){ this->bFire = bF;}
    9699
    97100protected:
Note: See TracChangeset for help on using the changeset viewer.