diff options
| author | Comment <tim@gray.(none)> | 2013-05-20 08:55:30 +0100 |
|---|---|---|
| committer | Comment <tim@gray.(none)> | 2013-05-20 08:55:30 +0100 |
| commit | cb7ec4965e6ec3d2142522c5c110b240f800e55d (patch) | |
| tree | fda61842f9e9cf3d4d4049930aef01e784358068 /vamphost/src/testApp.cpp | |
| parent | b5115001759f0d3bf841a410cfe1881d4954a92b (diff) | |
vamp wrapper begun
Diffstat (limited to 'vamphost/src/testApp.cpp')
| -rw-r--r-- | vamphost/src/testApp.cpp | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/vamphost/src/testApp.cpp b/vamphost/src/testApp.cpp new file mode 100644 index 0000000..adf7416 --- /dev/null +++ b/vamphost/src/testApp.cpp @@ -0,0 +1,69 @@ +#include "testApp.h" + +//-------------------------------------------------------------- +void testApp::setup() { + + +} + + +//-------------------------------------------------------------- +void testApp::update(){ + +} + +//-------------------------------------------------------------- +void testApp::draw(){ + ofBackground(0, 0, 0); + ofSetColor(255, 255, 255); + + +} + +//-------------------------------------------------------------- +void testApp::exit(){ + +} + +//-------------------------------------------------------------- +void testApp::keyPressed(int key){ + switch (key) { + case 's': + case 'S': + break; + case 'p': + case 'P': + break; + } +} + +//-------------------------------------------------------------- +void testApp::keyReleased(int key){ + +} + +//-------------------------------------------------------------- +void testApp::mouseMoved(int x, int y ){ + +} + +//-------------------------------------------------------------- +void testApp::mouseDragged(int x, int y, int button){ + +} + +//-------------------------------------------------------------- +void testApp::mousePressed(int x, int y, int button){ + +} + +//-------------------------------------------------------------- +void testApp::mouseReleased(int x, int y, int button){ + +} + +//-------------------------------------------------------------- +void testApp::windowResized(int w, int h){ + +} + |
