00001 #ifndef GETYPES_H 00002 #define GETYPES_H 00003 00004 00005 typedef struct GE_Vector 00006 { 00007 float x; 00008 float y; 00009 float z; 00010 }; 00011 typedef struct GE_Rect 00012 { 00013 int x; 00014 int y; 00015 int w; 00016 int h; 00017 }; 00018 00019 #endif