summaryrefslogtreecommitdiff
path: root/vfg/src/testApp.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@gray.(none)>2012-11-01 21:10:31 +0000
committerTim Redfern <tim@gray.(none)>2012-11-01 21:10:31 +0000
commitc31a609399c2e05a50a5df8be10049903521c9e7 (patch)
tree246c2c9a67ad0fc8b7473006d0763ab8bbf22675 /vfg/src/testApp.cpp
initial commit
Diffstat (limited to 'vfg/src/testApp.cpp')
-rwxr-xr-xvfg/src/testApp.cpp64
1 files changed, 64 insertions, 0 deletions
diff --git a/vfg/src/testApp.cpp b/vfg/src/testApp.cpp
new file mode 100755
index 0000000..7710326
--- /dev/null
+++ b/vfg/src/testApp.cpp
@@ -0,0 +1,64 @@
+#include "testApp.h"
+
+//--------------------------------------------------------------
+void testApp::setup(){
+ testsong=new song("VODA_MUS_DeckTheHalls-Backing_v.1.3.mp3","VODA_MUS_DeckTheHalls-Melody_v.1.3.mp3","MIDI_DeckTheHalls_Test.1.3.xml");
+}
+
+void testApp::exit(){
+ delete testsong;
+}
+
+//--------------------------------------------------------------
+void testApp::update(){
+}
+
+//--------------------------------------------------------------
+void testApp::draw(){
+
+}
+
+//--------------------------------------------------------------
+void testApp::keyPressed(int key){
+
+}
+
+//--------------------------------------------------------------
+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){
+
+}
+
+//--------------------------------------------------------------
+void testApp::gotMessage(ofMessage msg){
+
+}
+
+//--------------------------------------------------------------
+void testApp::dragEvent(ofDragInfo dragInfo){
+
+}