Mercurial > hg > Members > kono > Cerium
annotate TaskManager/Test/test_render/scene.h @ 224:ebfb9e389716
SceneGraph.cpp xmlcreate
author | tkaito@nw0534.st.ie.u-ryukyu.ac.jp |
---|---|
date | Tue, 10 Feb 2009 20:45:51 +0900 |
parents | 5c194c71eca8 |
children | 25c820b6060e |
rev | line source |
---|---|
109 | 1 #ifndef INCLUDED_SCENE |
2 #define INCLUDED_SCENE | |
3 | |
4 #ifndef INCLUDED_POLYGON | |
5 #include "polygon.h" | |
6 #endif | |
7 | |
8 class Scene{ | |
9 public: | |
10 Polygon *list; | |
11 Demonstration *demo; | |
12 void (Scene::*action_scene)(); | |
13 | |
14 Scene(); | |
15 void title_init(); | |
16 void title(); | |
17 void title_end(); | |
18 }; | |
19 | |
20 #endif |