annotate ppe/Property.h @ 30:14f2ef87f9f2 default tip

remove unnecessary files
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Fri, 10 Dec 2010 11:29:41 +0900
parents a131729d6e4d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22
958a55ce0d98 add new files.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 #ifndef INCLUDED_TASK_HELLO
958a55ce0d98 add new files.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 #define INCLUDED_TASK_HELLO
958a55ce0d98 add new files.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3
958a55ce0d98 add new files.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 #ifndef INCLUDED_SCHED_TASK
958a55ce0d98 add new files.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 # include "SchedTask.h"
958a55ce0d98 add new files.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 #endif
958a55ce0d98 add new files.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7
958a55ce0d98 add new files.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 typedef struct {
24
a131729d6e4d not working.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents: 22
diff changeset
9 float x, y;
a131729d6e4d not working.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents: 22
diff changeset
10 float vx, vy;
a131729d6e4d not working.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents: 22
diff changeset
11 float width, height;
a131729d6e4d not working.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents: 22
diff changeset
12 float mid_w, mid_h;
a131729d6e4d not working.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents: 22
diff changeset
13 int frame;
a131729d6e4d not working.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents: 22
diff changeset
14 const char *chara;
a131729d6e4d not working.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents: 22
diff changeset
15 int vital;
a131729d6e4d not working.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents: 22
diff changeset
16 int score;
a131729d6e4d not working.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents: 22
diff changeset
17 void *parent;
a131729d6e4d not working.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents: 22
diff changeset
18 void *root;
a131729d6e4d not working.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents: 22
diff changeset
19 int flag;
22
958a55ce0d98 add new files.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
20 } *ObjPropertyPtr, ObjProperty;
958a55ce0d98 add new files.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
21
958a55ce0d98 add new files.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
22 #endif