From ba9af7648a79b54836019ca792e40e81ca863c86 Mon Sep 17 00:00:00 2001 From: tim Date: Fri, 18 Apr 2014 09:28:31 +0100 Subject: good to go --- .../ofxSVGTiny/example/src/testApp.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 liveengineUnmapped/ofxSVGTiny/example/src/testApp.h (limited to 'liveengineUnmapped/ofxSVGTiny/example/src/testApp.h') 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); + +}; -- cgit v1.2.3