summaryrefslogtreecommitdiff
path: root/vfg/src/testApp.h
diff options
context:
space:
mode:
authorComment <tim@gray.(none)>2012-11-28 18:40:32 +0000
committerComment <tim@gray.(none)>2012-11-28 18:40:32 +0000
commita0ab2cd35d91ba0080f9fb870d82aa90a51a0d6c (patch)
tree0e0fd44d0f07ccf1ea4a5f1e30a03e0203300321 /vfg/src/testApp.h
parent75c277c10f206f5bf3799caa03a52f40c1c8b6cf (diff)
nearly finished except latency
Diffstat (limited to 'vfg/src/testApp.h')
-rwxr-xr-xvfg/src/testApp.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/vfg/src/testApp.h b/vfg/src/testApp.h
index 2518b55..143885c 100755
--- a/vfg/src/testApp.h
+++ b/vfg/src/testApp.h
@@ -7,6 +7,7 @@
#include "Asterisk.h"
#include "Puppet.h"
#include "Animal.h"
+#include "Tag.h";
/*
this library?
@@ -78,16 +79,24 @@ class testApp : public ofBaseApp{
ofVideoPlayer background;
ofImage vignette;
- song *testsong;
+ vector<song*> songs;
vector<Animal> penguins;
vector<Animal> raccoons;
+ vector<vector<Animal> > animals;
//vector<Animal> playanimals;
vector<Animal>* playanimal;
+ vector<Tag*> tags;
+
+ vector<Billboard*> logos;
+
+ puppetSprite banner;
+
+ Billboard* lyricspanel;
Puppet testpenguin;
int currentlevel;
@@ -95,6 +104,8 @@ class testApp : public ofBaseApp{
Asterisk game;
bool showFPS;
+
+ int currentsong,nextsong;
};