-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathofMain.h
47 lines (39 loc) · 871 Bytes
/
ofMain.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifndef OF_MAIN
#define OF_MAIN
//--------------------------
// utils
#include "ofConstants.h"
#include "ofMath.h"
#include "ofUtils.h"
#include "ofTypes.h"
//--------------------------
// communication
#ifndef TARGET_OF_IPHONE
#include "ofSerial.h"
#include "ofStandardFirmata.h"
#include "ofArduino.h"
#endif
//--------------------------
// graphics
#include "ofTexture.h"
#include "ofTrueTypeFont.h"
#include "ofGraphics.h"
#include "ofImage.h"
//--------------------------
// app
#include "ofBaseApp.h"
#include "ofAppRunner.h"
//--------------------------
// audio
#include "ofSoundStream.h"
#include "ofSoundPlayer.h"
//--------------------------
// video
#ifndef TARGET_OF_IPHONE //(temp for now, until this is ported)
#include "ofVideoGrabber.h"
#include "ofVideoPlayer.h"
#endif
//--------------------------
// events
#include "ofEvents.h"
#endif