Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 204 | chris | 1 | #ifndef OBJECT_H |
| 2 | #define OBJECT_H |
||
| 3 | |||
| 4 | |||
| 5 | #define OBJECT_MAX 30 |
||
| 6 | |||
| 7 | typedef struct { |
||
| 8 | char name[256]; |
||
| 9 | int id; |
||
| 10 | int visible; |
||
| 11 | int collide; |
||
| 12 | double marker_coord[4][2]; |
||
| 13 | double trans[3][4]; |
||
| 14 | double marker_width; |
||
| 15 | double marker_center[2]; |
||
| 16 | } ObjectData_T; |
||
| 17 | |||
| 18 | ObjectData_T *read_ObjData( char *name, int *objectnum ); |
||
| 19 | |||
| 20 | #endif |