From 11229ede83c48fab01e6e566155536b5e7e9d762 Mon Sep 17 00:00:00 2001 From: Comment Date: Mon, 24 Jun 2013 23:18:03 +0100 Subject: yay --- testpoints/src/testApp.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 testpoints/src/testApp.h (limited to 'testpoints/src/testApp.h') diff --git a/testpoints/src/testApp.h b/testpoints/src/testApp.h new file mode 100644 index 0000000..7b0c226 --- /dev/null +++ b/testpoints/src/testApp.h @@ -0,0 +1,33 @@ +#ifndef _TEST_APP +#define _TEST_APP + +#include "ofMain.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(); + + + private: + + vector points; + vector speeds; + vector colours; + vector sizes; + +}; + +#endif + + -- cgit v1.2.3