From 9090618078eff67634a0217b9c37b2151183f78d Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Tue, 29 Aug 2017 00:55:14 +0100 Subject: starting to shape up --- gui/src/ofApp.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gui/src/ofApp.cpp') 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); } //-------------------------------------------------------------- -- cgit v1.2.3