summaryrefslogtreecommitdiff
path: root/gui/src/ofApp.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@getdrop.com>2017-08-29 00:55:14 +0100
committerTim Redfern <tim@getdrop.com>2017-08-29 00:55:14 +0100
commit9090618078eff67634a0217b9c37b2151183f78d (patch)
tree4fd999f31c40ee17688e6cdf1e231e9b589a6c7c /gui/src/ofApp.cpp
parent50d670c523ef4ee563ba961bd479b432516cefaf (diff)
starting to shape up
Diffstat (limited to 'gui/src/ofApp.cpp')
-rw-r--r--gui/src/ofApp.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/gui/src/ofApp.cpp b/gui/src/ofApp.cpp
index 4000461..4ab2dc4 100644
--- a/gui/src/ofApp.cpp
+++ b/gui/src/ofApp.cpp
@@ -27,7 +27,7 @@ void ofApp::draw(){
//--------------------------------------------------------------
void ofApp::keyPressed(int key){
-
+ images.keyPressed(key);
}
//--------------------------------------------------------------
@@ -42,17 +42,17 @@ void ofApp::mouseMoved(int x, int y ){
//--------------------------------------------------------------
void ofApp::mouseDragged(int x, int y, int button){
-
+ images.mouseDragged(x,y,button);
}
//--------------------------------------------------------------
void ofApp::mousePressed(int x, int y, int button){
-
+ images.mousePressed(x,y,button);
}
//--------------------------------------------------------------
void ofApp::mouseReleased(int x, int y, int button){
-
+ images.mouseReleased(x,y,button);
}
//--------------------------------------------------------------