5 changed files with 54 additions and 3 deletions
@ -0,0 +1 @@ |
|||
#include "ofxBaseSurface.h" |
@ -0,0 +1,17 @@ |
|||
#ifndef H_OFX_BASE_SURFACE |
|||
#define H_OFX_BASE_SURFACE |
|||
|
|||
#include "ofMain.h" |
|||
|
|||
class ofxBaseSurface |
|||
{ |
|||
public: |
|||
virtual void setup(){}; |
|||
virtual void draw(){}; |
|||
|
|||
protected: |
|||
ofMesh mesh; |
|||
ofTexture* texture; |
|||
}; |
|||
|
|||
#endif |
Loading…
Reference in new issue