mirror of https://github.com/axmolengine/axmol.git
10 lines
193 B
C
10 lines
193 B
C
|
#ifndef __JCONFIG_H__
|
||
|
#define __JCONFIG_H__
|
||
|
|
||
|
#if defined(WIN32) || defined(_WIN32)
|
||
|
#include "jconfig_win.h"
|
||
|
#else
|
||
|
#include "jconfig_linux.h"
|
||
|
#endif // WIN32
|
||
|
|
||
|
#endif /* __JCONFIG_H__ */
|