Mercurial > hg > Game > Cerium
annotate TaskManager/Test/simple_pack/trash/demonstration.cpp @ 69:c9b973f0673e
*** empty log message ***
author | chiaki |
---|---|
date | Sun, 17 Feb 2008 23:07:52 +0900 |
parents | 0c8ae614d421 |
children |
rev | line source |
---|---|
53 | 1 #include <iostream> |
2 #include "polygon.h" | |
3 #include "xml.h" | |
4 #include "texture.h" | |
5 #include "demonstration.h" | |
6 #include "pad.h" | |
7 using namespace std; | |
8 | |
9 Demonstration::Demonstration() | |
10 { | |
11 action_demo = &Demonstration::test_play; | |
12 } | |
13 | |
14 void Demonstration::test_play() | |
15 { | |
16 list->draw(); | |
17 if(pad(RIGHT)) | |
18 { | |
19 //action_demo = &Demonstration::test_end; | |
20 action_demo = NULL; | |
21 } | |
22 } |