diff options
| author | tim <tim@eclectronics.org> | 2017-05-22 21:31:33 +0100 |
|---|---|---|
| committer | tim <tim@eclectronics.org> | 2017-05-22 21:31:33 +0100 |
| commit | 6ae491eea38055ebe3ba1154f0e916d7bbf95040 (patch) | |
| tree | 793783c9f82f0a30fcf78507c3c88d6cec6c6639 /testDir/src/ofApp.h | |
| parent | c31d38915cb6643013223a4ed9b4021b3499d71d (diff) | |
directory reader in test case
Diffstat (limited to 'testDir/src/ofApp.h')
| -rw-r--r-- | testDir/src/ofApp.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/testDir/src/ofApp.h b/testDir/src/ofApp.h new file mode 100644 index 0000000..2b6ed7d --- /dev/null +++ b/testDir/src/ofApp.h @@ -0,0 +1,34 @@ +#pragma once + +#include "ofMain.h" + +#include "dirscanner.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); + void exit(); + + dirScanner scanner; + dirPlayer player; +}; + + |
