diff property.h @ 33:39e643fc4f90

moving stage1.
author koba <koba@cr.ie.u-ryukyu.ac.jp>
date Wed, 05 Jan 2011 14:41:26 +0900
parents ccb8d9956a1e
children 7aaaaf5dde40
line wrap: on
line diff
--- a/property.h	Fri Dec 31 19:28:31 2010 +0900
+++ b/property.h	Wed Jan 05 14:41:26 2011 +0900
@@ -25,21 +25,38 @@
 
 } CollisionProperty, *CollisionPropertyPtr;
 
+
 typedef struct ObjData {
+  int type;
+
   int tama_type;
   int charano;
   int task;
-
+  int zorder;
+  int number;
+  int color;
+  float angle;
   float x, y;
   float vx, vy;
+  float w, h;
+  float scalex, scaley;
+  short middlex, middley;
 } ObjData, *ObjDataPtr;
 
 typedef struct ObjContainer {
   bool flag;
   int length;
-  int type;
 
   ObjData data[1];
 } ObjContainer, *ObjContainerPtr;
 
+
+typedef struct Boss1Property {
+  int count;
+  int fastebos;
+  int rinkx;
+  int rinky;
+  int rinkf2;
+} Boss1Property, *Boss1PropertyPtr;
+
 #endif