ofxPiMapper fixed for C++17 & oF 12.0
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.
 
 

23 lines
421 B

#pragma once
#include "ofEvents.h"
#include "ofLog.h"
namespace ofx {
namespace piMapper {
class Application;
class ApplicationBaseState {
public:
virtual void draw(Application * app){}
virtual void setState(Application * app, ApplicationBaseState * st);
// Event handler virtual methods
virtual void onKeyPressed(Application * app, ofKeyEventArgs & args){}
};
} // namespace piMapper
} // namespace ofx