Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 7, 2005, 3:54:49 PM (20 years ago)
Author:
chris
Message:

orxonox/branches/levelloader: Merged trunk into branch… still not working though…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/levelloader/src/world_entities/player.h

    r3605 r3746  
    1010
    1111template<class T> class tList;
    12 class OBJModel;
    1312class Weapon;
     13class Vector;
     14class World;
    1415
    1516//! Basic controllable WorldEntity
     
    1920 
    2021 public:
    21   Player(bool isFree = false);
     22  Player();
    2223  Player(TiXmlElement* root);
    2324  virtual ~Player();
     
    4849  tList<Weapon>* weapons;//!< a list of weapon
    4950  Weapon* activeWeapon;  //!< the weapon that is currenty activated
     51  World* myWorld;        //!< reference to the world object
    5052
    51   Vector velocity;       //!< the velocity of the player.
     53  Vector* velocity;       //!< the velocity of the player.
    5254  float travelSpeed;     //!< the current speed of the player (to make soft movement)
    5355  float acceleration;    //!< the acceleration of the player.
    5456 
    5557  void move(float time);
    56   void fire(void);
     58  void weapon(void);
    5759 
    5860};
Note: See TracChangeset for help on using the changeset viewer.