Mercurial > hg > Game > Cerium
annotate old/simple_pack/scene.h @ 2069:26aa08c9a1de draft default tip
cuda example fix
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 12 Feb 2017 10:04:55 +0900 |
parents | 3bc98f6d31ff |
children |
rev | line source |
---|---|
53 | 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 |