From 983d4a8a596a680edc9a1bc78a6b5b61b6486be5 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Wed, 12 Dec 2018 01:17:00 +0000 Subject: mame vector receiver --- oscReceiveExample/src/main.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 oscReceiveExample/src/main.cpp (limited to 'oscReceiveExample/src/main.cpp') diff --git a/oscReceiveExample/src/main.cpp b/oscReceiveExample/src/main.cpp new file mode 100644 index 0000000..b156efd --- /dev/null +++ b/oscReceiveExample/src/main.cpp @@ -0,0 +1,14 @@ +#include "ofMain.h" +#include "ofApp.h" + +//======================================================================== +int main( ){ + + ofSetupOpenGL(640,480, OF_WINDOW); // <-------- setup the GL context + + // this kicks off the running of my app + // can be OF_WINDOW or OF_FULLSCREEN + // pass in width and height too: + ofRunApp( new ofApp()); + +} -- cgit v1.2.3