Mercurial > hg > Game > Cerium
annotate old/simple_render/demonstration.h @ 639:91d03774c407 draft
fix
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 19 Nov 2009 18:45:24 +0900 |
parents | 3bc98f6d31ff |
children |
rev | line source |
---|---|
26 | 1 #ifndef INCLUDED_DEMONSTRATION |
2 #define INCLUDED_DEMONSTRATION | |
3 | |
4 #ifndef INCLUDED_POLYGON | |
5 #include "polygon.h" | |
6 #endif | |
7 | |
8 class Demonstration{ | |
9 public: | |
10 Polygon *list; | |
11 void (Demonstration::*action_demo)(); | |
12 | |
13 Demonstration(); | |
14 //~Demonstration(); | |
15 void test_init(); | |
16 void test_play(); | |
17 void test_end(); | |
18 }; | |
19 | |
20 #endif |