summaryrefslogtreecommitdiff
path: root/testDir/src/ofApp.h
diff options
context:
space:
mode:
authortim <tim@eclectronics.org>2017-06-13 21:57:54 +0100
committertim <tim@eclectronics.org>2017-06-13 21:57:54 +0100
commite7d2892633ba9761a8ab8cc98f812e2db89e8beb (patch)
treef1657ba4a6e449da416051e9851c59b7e4b96cae /testDir/src/ofApp.h
parent2c3cdaa27878b6dfa23fae35239037f20f3ae6b1 (diff)
parenta0e8fefd1bf241b805c4542421bdbc6a4447fdc3 (diff)
Merge branch 'dirscanner'
Diffstat (limited to 'testDir/src/ofApp.h')
-rw-r--r--testDir/src/ofApp.h34
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;
+};
+
+