1 #ifdef __APPLE__
2 # include "Mac_data.h"
3 #else
4 
5 #ifndef INC_DATA_H
6 #define INC_DATA_H
7 
8 #include <string>
9 using namespace std;
10 
11 extern char fontSmall[3328];
12 extern char fontBig[10240];
13 
14 bool initFont();
15 
16 const string findDataPath(string relPath);
17 
18 #endif /* INC_DATA_H */
19 #endif /* __APPLE__ */
20