You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
390 B
22 lines
390 B
#ifndef H_OF_APP
|
|
#define H_OF_APP
|
|
|
|
#include "ofMain.h"
|
|
#include "ofxPiMapper.h"
|
|
|
|
class ofApp : public ofBaseApp
|
|
{
|
|
public:
|
|
void setup();
|
|
void update();
|
|
void draw();
|
|
|
|
void keyPressed(int key);
|
|
void mousePressed(int x, int y, int button);
|
|
void mouseReleased(int x, int y, int button);
|
|
void mouseDragged(int x, int y, int button);
|
|
|
|
ofxTriangleSurface triangleSurface;
|
|
};
|
|
|
|
#endif
|