diff options
| author | Comment <tim@gray.(none)> | 2014-03-14 00:51:24 +0000 |
|---|---|---|
| committer | Comment <tim@gray.(none)> | 2014-03-14 00:51:24 +0000 |
| commit | bb852cee91b52b71fccade7d4a1ef065eb0de2f0 (patch) | |
| tree | 97ded3b49faa5d444fa5e9e6c9e58a04d8440afc /test-tycbutton/src/testApp.h | |
| parent | 8072eb4d248debf2d049548dd5dec21cc0152c52 (diff) | |
nice
Diffstat (limited to 'test-tycbutton/src/testApp.h')
| -rw-r--r-- | test-tycbutton/src/testApp.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test-tycbutton/src/testApp.h b/test-tycbutton/src/testApp.h new file mode 100644 index 0000000..de233d5 --- /dev/null +++ b/test-tycbutton/src/testApp.h @@ -0,0 +1,26 @@ +#ifndef _TEST_APP +#define _TEST_APP + +#include "ofMain.h" +#include "buttonChecker.h" + +class testApp : public ofBaseApp{ + + public: + + void setup(); + void update(); + void draw(); + + void keyPressed (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); + + buttonChecker button; + +}; + +#endif |
