diff options
| author | Tim Redfern <tim@getdrop.com> | 2017-08-28 23:22:30 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@getdrop.com> | 2017-08-28 23:22:30 +0100 |
| commit | 50d670c523ef4ee563ba961bd479b432516cefaf (patch) | |
| tree | ed6d9ea45f84f2ad62b25dee7ad564d1c1a174b0 /gui/src/ofApp.h | |
| parent | d8a46a6409286b3834bc609e4f34a09d48a8ae58 (diff) | |
initial chainimageset
Diffstat (limited to 'gui/src/ofApp.h')
| -rw-r--r-- | gui/src/ofApp.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gui/src/ofApp.h b/gui/src/ofApp.h new file mode 100644 index 0000000..da9d734 --- /dev/null +++ b/gui/src/ofApp.h @@ -0,0 +1,31 @@ +#pragma once + +#include "ofMain.h" +#include "chainImage.h" + + + +class ofApp : 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 mouseEntered(int x, int y); + void mouseExited(int x, int y); + void windowResized(int w, int h); + void dragEvent(ofDragInfo dragInfo); + void gotMessage(ofMessage msg); + + vector<string> arguments; + + chainImageSet images; + +}; |
