Rev 18 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1 | pmbaty | 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 |