annotate spe/Move00.h @ 7:c015109a6041

schedule add. 10% done.
author tkaito
date Tue, 29 Jun 2010 04:25:32 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
1 #ifndef INCLUDED_TASK_HELLO
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
2 #define INCLUDED_TASK_HELLO
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
3
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
4 #ifndef INCLUDED_SCHED_TASK
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
5 # include "SchedTask.h"
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
6 #endif
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
7 /*
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
8 class Twice : public SchedTask {
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
9 public:
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
10 SchedConstructor(Twice);
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
11
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
12 int run(void *r, void *w);
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
13 };
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
14 */
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
15
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
16 typedef struct {
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
17 double x, y;
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
18 double vx, vy;
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
19 const char *chara;
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
20 int vital;
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
21 int score;
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
22 int remove;
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
23 void *parent;
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
24 void *root;
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
25
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
26 } *ObjPropertyPtr, ObjProperty;
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
27
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
28
c015109a6041 schedule add. 10% done.
tkaito
parents:
diff changeset
29 #endif