summaryrefslogtreecommitdiff
path: root/liveengineUnmapped/ofxSVGTiny/example/src/testApp.h
diff options
context:
space:
mode:
authortim <tim@gray.(none)>2014-04-18 09:28:31 +0100
committertim <tim@gray.(none)>2014-04-18 09:28:31 +0100
commitba9af7648a79b54836019ca792e40e81ca863c86 (patch)
tree10cf27eca307caabcd45cdab53067cded31961f8 /liveengineUnmapped/ofxSVGTiny/example/src/testApp.h
parent9d46e74d0f6e9c240bb5f0597ff75b5415a4a5a1 (diff)
good to go
Diffstat (limited to 'liveengineUnmapped/ofxSVGTiny/example/src/testApp.h')
-rw-r--r--liveengineUnmapped/ofxSVGTiny/example/src/testApp.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/liveengineUnmapped/ofxSVGTiny/example/src/testApp.h b/liveengineUnmapped/ofxSVGTiny/example/src/testApp.h
new file mode 100644
index 0000000..0cb5a8c
--- /dev/null
+++ b/liveengineUnmapped/ofxSVGTiny/example/src/testApp.h
@@ -0,0 +1,22 @@
+#pragma once
+
+#include "ofMain.h"
+
+class testApp : public ofBaseApp{
+
+ public:
+ void setup();
+ void update();
+ void draw();
+
+ 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);
+ void dragEvent(ofDragInfo dragInfo);
+ void gotMessage(ofMessage msg);
+
+};