diff Renderer/test_render/scene.h @ 283:55ea4465b1a2

fix test_render
author e065746@localhost.localdomain
date Fri, 05 Jun 2009 16:49:12 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Renderer/test_render/scene.h	Fri Jun 05 16:49:12 2009 +0900
@@ -0,0 +1,20 @@
+#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