├── example ├── .gitignore ├── Makefile ├── Project.xcconfig ├── config.make ├── example.xcodeproj │ └── project.pbxproj ├── openFrameworks-Info.plist └── src │ └── ofApp.cpp └── src └── ofxGlobalContext.h /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxGlobalContext/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxGlobalContext/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxGlobalContext/HEAD/example/Project.xcconfig -------------------------------------------------------------------------------- /example/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxGlobalContext/HEAD/example/config.make -------------------------------------------------------------------------------- /example/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxGlobalContext/HEAD/example/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxGlobalContext/HEAD/example/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxGlobalContext/HEAD/example/src/ofApp.cpp -------------------------------------------------------------------------------- /src/ofxGlobalContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxGlobalContext/HEAD/src/ofxGlobalContext.h --------------------------------------------------------------------------------