diff options
| author | Tim Redfern <tim@eclectronics.org> | 2012-03-28 00:42:08 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2012-03-28 00:42:08 +0100 |
| commit | a47b39541a7f60dfdda921c9598abe947e1e6ad9 (patch) | |
| tree | 34f85aa65d56793d2c42a83df5b025be7a142669 /morpher/src/testApp.h | |
| parent | 3badbcdf8d8a0005543521849694fa481dfce628 (diff) | |
rayhit still iffy. starting morpher
Diffstat (limited to 'morpher/src/testApp.h')
| -rw-r--r-- | morpher/src/testApp.h | 23 |
1 files changed, 23 insertions, 0 deletions
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); + +}; + |
