Mercurial > hg > Game > Cerium
comparison TaskManager/Test/simple_pack/demonstration.h @ 53:0c8ae614d421
Initial revision
author | chiaki |
---|---|
date | Fri, 15 Feb 2008 20:58:50 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
52:e198c3e01cec | 53:0c8ae614d421 |
---|---|
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 |