From a47b39541a7f60dfdda921c9598abe947e1e6ad9 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Wed, 28 Mar 2012 00:42:08 +0100 Subject: rayhit still iffy. starting morpher --- morpher/src/testApp.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 morpher/src/testApp.h (limited to 'morpher/src/testApp.h') diff --git a/morpher/src/testApp.h b/morpher/src/testApp.h new file mode 100644 index 0000000..58fb4ce --- /dev/null +++ b/morpher/src/testApp.h @@ -0,0 +1,23 @@ +#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