summaryrefslogtreecommitdiff
path: root/gui/src/ofApp.cpp
diff options
context:
space:
mode:
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);
}
//--------------------------------------------------------------