26 lines
363 B
C
26 lines
363 B
C
#ifndef ENGINE_H_INCLUDED
|
|
#define ENGINE_H_INCLUDED
|
|
|
|
|
|
#ifdef UTILS_ENGINE
|
|
|
|
#include "include/Utils/Utils.h"
|
|
|
|
#else
|
|
|
|
|
|
#ifdef TARGET_WIN32
|
|
#include "SalmonEngineWindows.h"
|
|
#endif
|
|
|
|
#ifdef TARGET_ANDROID
|
|
#include "SalmonEngineAndroid.h"
|
|
#endif
|
|
|
|
#ifdef TARGET_IOS
|
|
#include "include/SalmonEngineIos.h"
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif //ENGINE_H_INCLUDED
|