annotate TaskManager/Test/test_render/demonstration.h @ 141:56db76a03294
draft
TileList を作ろうとしたがに動かない。
今はTileList 無しver
author |
gongo@charles.cr.ie.u-ryukyu.ac.jp |
date |
Sat, 29 Nov 2008 01:18:32 +0900 |
parents |
028ffc9c0375 |
children |
b3fb0013e6b2 |
rev |
line source |
109
|
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
|