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
ForeignSpaceShip.h
Go to the documentation of this file.
1 
6 #pragma once
7 #include "spaceship.h"
8 #include "Plane.h"
9 
10 class ForeignSpaceShip abstract :
11  public SpaceShip
12 {
13 public:
14  ForeignSpaceShip(float r, GLuint displayList);
15 public:
16  ~ForeignSpaceShip(void);
17 private:
18  virtual void adjust( float t )=0;
19 public:
20  void update(float t);
21 };