From cb7ec4965e6ec3d2142522c5c110b240f800e55d Mon Sep 17 00:00:00 2001 From: Comment Date: Mon, 20 May 2013 08:55:30 +0100 Subject: vamp wrapper begun --- vamphost/src/testApp.cpp | 69 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 vamphost/src/testApp.cpp (limited to 'vamphost/src/testApp.cpp') 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){ + +} + -- cgit v1.2.3