summaryrefslogtreecommitdiff
path: root/vfg/src/testApp.h
diff options
context:
space:
mode:
Diffstat (limited to 'vfg/src/testApp.h')
-rwxr-xr-xvfg/src/testApp.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/vfg/src/testApp.h b/vfg/src/testApp.h
index 82b25a5..d44973c 100755
--- a/vfg/src/testApp.h
+++ b/vfg/src/testApp.h
@@ -50,6 +50,7 @@ the 2nd time you play , if you 'die' it doesn't trigger 'end of game', the music
#define GAME_PLAYING 10
#define GAME_ENDPLAYING 11
#define GAME_WALKON 12
+#define GAME_ENDTITLE 12
class guiWindow;
@@ -79,6 +80,9 @@ class testApp : public ofxFensterListener{
void activatePractice();
void switchAnimals();
void endGame();
+
+ void queueWalkOff();
+ void queueWalkOn();
ofVideoPlayer intro;
ofVideoPlayer advert;
@@ -146,7 +150,7 @@ public:
void draw();
void dragEvent(ofDragInfo dragInfo,ofxFenster* win);
void windowMoved(int x, int y);
- string levelnames[12]={
+ string levelnames[13]={
"STARTINGINTRO",
"INTRO",
"ENDINGINTRO",
@@ -158,7 +162,8 @@ public:
"PRACTICE",
"PLAYING",
"ENDPLAYING",
- "WALKON"
+ "WALKON",
+ "ENDTITLE"
};
};