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.
29 lines
602 B
29 lines
602 B
#pragma once
|
|
|
|
#include "Application.h"
|
|
#include "ofEvents.h"
|
|
#include "ofLog.h"
|
|
#include "ofGraphics.h"
|
|
#include "SetApplicationStateCmd.h"
|
|
#include "ProjectionMappingState.h"
|
|
#include "GuiMode.h"
|
|
|
|
namespace ofx {
|
|
namespace piMapper {
|
|
|
|
class PresentationState : public ApplicationBaseState {
|
|
|
|
public:
|
|
static PresentationState * instance();
|
|
void draw(Application * app);
|
|
void onMousePressed(Application * app, ofMouseEventArgs & args);
|
|
|
|
void onGuiEvent(Application * app, GuiEvent & e){}
|
|
|
|
private:
|
|
static PresentationState * _instance;
|
|
|
|
};
|
|
|
|
} // namespace piMapper
|
|
} // namespace ofx
|
|
|