comparison Renderer/Test/demonstration.h @ 0:04e28d8d3c6f

first commit
author Daiki KINJYO <e085722@ie.u-ryukyu.ac.jp>
date Mon, 08 Nov 2010 01:23:25 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:04e28d8d3c6f
1 #ifndef INCLUDED_DEMONSTRATION
2 #define INCLUDED_DEMONSTRATION
3
4 #include "polygon.h"
5
6 class Demonstration{
7 public:
8 Polygon *list;
9 void (Demonstration::*action_demo)();
10
11 Demonstration();
12 //~Demonstration();
13 void test_init();
14 void test_play();
15 void test_end();
16 };
17
18 #endif