home *** CD-ROM | disk | FTP | other *** search
/ 3D Games (Spidla) / 3dhry1.iso / carterrain / src / controls.h < prev    next >
Encoding:
C/C++ Source or Header  |  2003-03-17  |  303 b   |  17 lines

  1. #ifndef _CONTROLS_H_
  2. #define _CONTROLS_H_
  3.  
  4. #include "car.h"
  5.  
  6. class CControls
  7. {
  8.  private:
  9.   int forward, backward, left, right, brake, camera, lift;
  10.  
  11.  public:
  12.   void set_keys(int f, int b, int l, int r, int br, int c, int li);
  13.   void work(CCar & car, CCamera & cam, double m);
  14. };
  15.  
  16. #endif
  17.