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.
21 lines
445 B
21 lines
445 B
#pragma once
|
|
|
|
#include "ofMain.h"
|
|
#include "Settings.h"
|
|
#include "ofxPiMapper.h"
|
|
#include "CustomSource.h"
|
|
#include "CrossSource.h"
|
|
#include "VideoSource.h"
|
|
|
|
class ofApp : public ofBaseApp {
|
|
public:
|
|
void setup();
|
|
void draw();
|
|
|
|
ofxPiMapper piMapper;
|
|
|
|
// By using a custom source that is derived from FboSource
|
|
// you will be able to see the source listed in sources editor
|
|
CustomSource * customSource;
|
|
CrossSource * crossSource;
|
|
};
|