Rev 1 | Go to most recent revision | 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 | |||
4 | #include "harness/trace.h" |
||
5 | |||
6 | void Harness_ForceNullPlatform(void); |
||
18 | pmbaty | 7 | int Harness_CalculateFrameDelay(int last_frame_time); |
1 | pmbaty | 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 |