Mercurial > hg > Game > Cerium
annotate TaskManager/Test/test_render/Application/vacuum.h @ 520:8d86242337ba draft
SGList isn't used
author | tkaito@henri.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Wed, 21 Oct 2009 19:56:00 +0900 |
parents | 2c592936bbdf |
children | 3527ba243767 |
rev | line source |
---|---|
383
b3fb0013e6b2
fix header, MemHash in kernel
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
360
diff
changeset
|
1 #ifndef VACUUM_H |
b3fb0013e6b2
fix header, MemHash in kernel
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
360
diff
changeset
|
2 #define VACUUM_H |
b3fb0013e6b2
fix header, MemHash in kernel
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
360
diff
changeset
|
3 |
360 | 4 #include "SceneGraphRoot.h" |
5 | |
6 void cube_move_left(SceneGraphPtr node, int screen_w, int screen_h); | |
7 void cube_move_right(SceneGraphPtr node, int screen_w, int screen_h); | |
8 void no_move_idle(SceneGraphPtr node, int screen_w, int screen_h); | |
9 void cube_collision_idle(SceneGraphPtr node, int screen_w, int screen_h,SceneGraphPtr tree); | |
10 void cube_collision(SceneGraphPtr node, int screen_w, int screen_h,SceneGraphPtr tree); | |
11 void cube_split(SceneGraphPtr root,SceneGraphPtr tree); | |
12 void vacuum_move(SceneGraphPtr node, int w, int h); | |
13 void vacuum_coll(SceneGraphPtr node, int w, int h,SceneGraphPtr tree); | |
14 void title_idle(SceneGraphPtr node, int screen_w, int screen_h); | |
15 void title_collision(SceneGraphPtr node, int screen_w, int screen_h,SceneGraphPtr tree); | |
16 void scene_change(int w,int h,SceneGraphPtr node); | |
17 void gameover_idle(SceneGraphPtr node, int screen_w, int screen_h); | |
18 void gameover_collision(SceneGraphPtr node, int screen_w, int screen_h,SceneGraphPtr tree); | |
19 void collision_red(SceneGraphIteratorPtr it,SceneGraphPtr node); | |
20 void collision_purple(SceneGraphIteratorPtr it,SceneGraphPtr node,int w,int h); | |
21 void gameover_scene(int w,int h, SceneGraphPtr node); | |
22 void add_cubecollision_object(int id,SceneGraphPtr root,int w,int h); | |
23 void lock_attack(SceneGraphPtr node,SceneGraphIteratorPtr it); | |
24 void lockon_collision(SceneGraphPtr node,int w,int h,SceneGraphPtr tree); | |
25 void cube_rotate(SceneGraphPtr node,int w,int h); | |
26 | |
383
b3fb0013e6b2
fix header, MemHash in kernel
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
360
diff
changeset
|
27 #endif |