Subversion Repositories Games.Carmageddon

Rev

Rev 18 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #ifndef HARNESS_H
  2. #define HARNESS_H
  3.  
  4. #include "brender/br_types.h"
  5. #include "harness/trace.h"
  6.  
  7. void Harness_ForceNullPlatform(void);
  8.  
  9. typedef struct tCamera {
  10.     void (*update)(void);
  11.     float* (*getProjection)(void);
  12.     float* (*getView)(void);
  13.     void (*setPosition)(void);
  14. } tCamera;
  15.  
  16. #endif
  17.