Mercurial > hg > Game > Cerium
view TaskManager/Test/simple_pack/scene.h @ 69:c9b973f0673e
*** empty log message ***
author | chiaki |
---|---|
date | Sun, 17 Feb 2008 23:07:52 +0900 |
parents | 0c8ae614d421 |
children |
line wrap: on
line source
#ifndef INCLUDED_SCENE #define INCLUDED_SCENE #ifndef INCLUDED_POLYGON #include "polygon.h" #endif class Scene{ public: Polygon *list; Demonstration *demo; void (Scene::*action_scene)(); Scene(); void title_init(); void title(); void title_end(); }; #endif