Rev 18 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | pmbaty | 1 | #ifndef HARNESS_H |
| 2 | #define HARNESS_H |
||
| 3 | |||
| 20 | pmbaty | 4 | #include "brender/br_types.h" |
| 1 | pmbaty | 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 |