2 changed files with 27 additions and 0 deletions
@ -0,0 +1,11 @@ |
|||
#include "ofxBaseJoint.h" |
|||
|
|||
ofxBaseJoint::ofxBaseJoint() |
|||
{ |
|||
|
|||
} |
|||
|
|||
ofxBaseJoint::~ofxBaseJoint() |
|||
{ |
|||
|
|||
} |
@ -0,0 +1,16 @@ |
|||
#ifndef H_OFX_BASE_JOINT |
|||
#define H_OFX_BASE_JOINT |
|||
|
|||
#include "ofMain.h" |
|||
|
|||
class ofxBaseJoint { |
|||
public: |
|||
ofxBaseJoint(); |
|||
~ofxBaseJoint(); |
|||
|
|||
virtual void mousePressed(ofMouseEventArgs& args){}; |
|||
virtual void mouseReleased(ofMouseEventArgs& args){}; |
|||
virtual void mouseDragged(ofMouseEventArgs& args){}; |
|||
}; |
|||
|
|||
#endif |
Loading…
Reference in new issue