mElite  1.0
An Elite clone based on TextElite by Jan-Philipp Kappmeier and Melanie Schmidt.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
PlayerObject.h
Go to the documentation of this file.
1 
6 #pragma once
7 #include "CameraObject.h"
8 #include "GlobalGL.h"
9 #include "SpaceShip.h"
10 #include "Vector3.h"
11 
13 
16 class PlayerObject :
17  public CameraObject, public SpaceShip {
18  // constructors
19 public:
20  PlayerObject::PlayerObject( float r, GLuint displayList );
21  PlayerObject::PlayerObject( Vector3 position , float r, GLuint displayList );
22  PlayerObject::PlayerObject( float x, float y, float z, float r, GLuint displayList );
23  ~PlayerObject(void);
24  void coolLaser( DWORD time );
25 };