summaryrefslogtreecommitdiff
path: root/vamphost/src/testApp.h
diff options
context:
space:
mode:
Diffstat (limited to 'vamphost/src/testApp.h')
-rw-r--r--vamphost/src/testApp.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/vamphost/src/testApp.h b/vamphost/src/testApp.h
new file mode 100644
index 0000000..855889c
--- /dev/null
+++ b/vamphost/src/testApp.h
@@ -0,0 +1,28 @@
+#ifndef _TEST_APP
+#define _TEST_APP
+
+#include "ofMain.h"
+#include "ofxVamphost.h"
+
+
+class testApp : public ofBaseApp{
+
+public:
+ void setup();
+ void update();
+ void draw();
+ void exit();
+
+ void keyPressed (int key);
+ void keyReleased(int key);
+ void mouseMoved(int x, int y );
+ void mouseDragged(int x, int y, int button);
+ void mousePressed(int x, int y, int button);
+ void mouseReleased(int x, int y, int button);
+ void windowResized(int w, int h);
+
+
+
+};
+
+#endif