Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1899 in orxonox.OLD for orxonox/trunk/core/player.h


Ignore:
Timestamp:
May 20, 2004, 1:03:53 PM (21 years ago)
Author:
patrick
Message:

trunk/orxonox: collision detection implemented: simple spheres. all debug informations still print out to console. one enemy added, no AI, no move, waits to be killed. No kill signal implemented yet: look debug infos on console.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/core/player.h

    r1896 r1899  
    1515  ~Player ();
    1616
     17  /* position of the spacecraft */
     18  float xCor;
     19  float yCor;
     20  float zCor;
     21
     22  /* this player wanna shoot? so include a ref to ShootLaser */
     23  ShootLaser* shootLaser;
     24
    1725  void setPosition(float x, float y, float z);
    1826  void getPosition(float* x, float* y, float* z);
     
    2533
    2634 private:
    27   /* position of the spacecraft */
    28   float xCor;
    29   float yCor;
    30   float zCor;
    3135
    3236
    33   /* this player wanna shoot? so include a ref to ShootLaser */
    34   ShootLaser* shootLaser;
    3537};
    3638
Note: See TracChangeset for help on using the changeset viewer.