blob: 1dcb032e99bec688a4d8e54037539c1f10cd6870 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include "ofMain.h"
#include "ofxJSONElement.h"
class exampleApp : public ofBaseApp {
public:
void setup();
void draw();
ofxJSONElement response;
std::vector<ofImage> images;
};
|