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.
20 lines
394 B
20 lines
394 B
#include "PresentationState.h"
|
|
|
|
namespace ofx {
|
|
namespace piMapper {
|
|
|
|
PresentationState * PresentationState::_instance = 0;
|
|
|
|
PresentationState * PresentationState::instance(){
|
|
if(_instance == 0){
|
|
_instance = new ofx::piMapper::PresentationState();
|
|
}
|
|
return _instance;
|
|
}
|
|
|
|
void PresentationState::draw(Application * app){
|
|
app->getGui()->draw();
|
|
}
|
|
|
|
} // namespace piMapper
|
|
} // namespace ofx
|