comparison Renderer/Engine/scene.h @ 507:735f76483bb2

Reorganization..
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 12 Oct 2009 09:39:35 +0900
parents Renderer/test_render/scene.h@55ea4465b1a2
children
comparison
equal deleted inserted replaced
506:1d4a8a86f26b 507:735f76483bb2
1 #ifndef INCLUDED_SCENE
2 #define INCLUDED_SCENE
3
4 #include "polygon.h"
5
6 class Scene{
7 public:
8 Polygon *list;
9 Demonstration *demo;
10 void (Scene::*action_scene)();
11
12 Scene();
13 void title_init();
14 void title();
15 void title_end();
16 };
17
18 #endif