comparison Renderer/Engine/viewer.h @ 886:0cd80fa14cd9

set_move_task add.
author tkaito
date Tue, 13 Jul 2010 18:23:22 +0900
parents bcc81531a672
children 62838c1cd4b0
comparison
equal deleted inserted replaced
885:d0273488f50c 886:0cd80fa14cd9
87 // SceneGraph *createSceneGraph(int id); 87 // SceneGraph *createSceneGraph(int id);
88 // SceneGraph *createSceneGraph(); 88 // SceneGraph *createSceneGraph();
89 // void setSceneData(SceneGraph *g); 89 // void setSceneData(SceneGraph *g);
90 void mainLoop(); 90 void mainLoop();
91 91
92 void set_move_task(SceneGraphPtr node, int move_id, void *titlep, int size, PostFunction post_func)
93 {
94 sgroot->set_move_task(node, move_id, titlep, size, post_func);
95 }
92 void set_game_task(int id, void *property, int size, PostFunction post_func) 96 void set_game_task(int id, void *property, int size, PostFunction post_func)
93 { 97 {
94 sgroot->set_game_task(id, property, size, post_func); 98 sgroot->set_game_task(id, property, size, post_func);
95 } 99 }
96 100