Browse Source

Add ofxBaseJoint

master
Krisjanis Rijnieks 11 years ago
parent
commit
bd345577b9
  1. 11
      src/ofxBaseJoint.cpp
  2. 16
      src/ofxBaseJoint.h

11
src/ofxBaseJoint.cpp

@ -0,0 +1,11 @@
#include "ofxBaseJoint.h"
ofxBaseJoint::ofxBaseJoint()
{
}
ofxBaseJoint::~ofxBaseJoint()
{
}

16
src/ofxBaseJoint.h

@ -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…
Cancel
Save