comparison property.h @ 30:427e1aac0bd7

not run.
author koba <koba@cr.ie.u-ryukyu.ac.jp>
date Fri, 31 Dec 2010 15:50:44 +0900
parents ee4c488d48a3
children ccb8d9956a1e
comparison
equal deleted inserted replaced
29:d2e627af7f61 30:427e1aac0bd7
25 25
26 } CollisionProperty, *CollisionPropertyPtr; 26 } CollisionProperty, *CollisionPropertyPtr;
27 27
28 typedef struct TamaContainer { 28 typedef struct TamaContainer {
29 bool flag; 29 bool flag;
30 int type;
30 31
31 int type; 32 int tama_type;
32 float x, y; 33 float x, y;
33 } TamaContainer, *TamaContainerPtr; 34 } TamaContainer, *TamaContainerPtr;
34 35
36 typedef struct ObjContainer {
37 bool flag;
38 int type;
39
40 int tama_type;
41 int number;
42 float x, y;
43 float w, h;
44 int color;
45 float angle;
46 short middlex, middley;
47 float scalex, scaley;
48 } ObjContainer, *ObjContainerPtr;
49
35 #endif 50 #endif