summaryrefslogtreecommitdiff
path: root/ofAsterisk/src/testApp.h
diff options
context:
space:
mode:
authorComment <tim@gray.(none)>2012-11-29 19:13:19 +0000
committerComment <tim@gray.(none)>2012-11-29 19:13:19 +0000
commit7ae1f870faebb65e9ee3a064fc43ef2fc6955a84 (patch)
tree461ad1daea435954a994a2aac0157972d5d51e74 /ofAsterisk/src/testApp.h
parent8ccec15ca16cc78c625d02a56e73ff3b84858197 (diff)
work on asterisk plugin
Diffstat (limited to 'ofAsterisk/src/testApp.h')
-rwxr-xr-xofAsterisk/src/testApp.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/ofAsterisk/src/testApp.h b/ofAsterisk/src/testApp.h
new file mode 100755
index 0000000..84c984c
--- /dev/null
+++ b/ofAsterisk/src/testApp.h
@@ -0,0 +1,25 @@
+#pragma once
+
+#include "ofMain.h"
+#include "Asterisk.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);
+
+ Asterisk game;
+
+};