2013-01-19 20:02:34 +00:00
|
|
|
#ifndef ENGINE_H_INCLUDED
|
|
|
|
#define ENGINE_H_INCLUDED
|
|
|
|
|
2013-02-19 12:37:56 +00:00
|
|
|
|
|
|
|
#ifdef UTILS_ENGINE
|
|
|
|
|
|
|
|
#include "include/Utils/Utils.h"
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
2013-01-28 10:40:28 +00:00
|
|
|
#ifdef TARGET_WIN32
|
2013-01-19 20:02:34 +00:00
|
|
|
#include "SalmonEngineWindows.h"
|
|
|
|
#endif
|
|
|
|
|
2013-01-28 10:40:28 +00:00
|
|
|
#ifdef TARGET_ANDROID
|
2013-01-19 20:02:34 +00:00
|
|
|
#include "SalmonEngineAndroid.h"
|
|
|
|
#endif
|
|
|
|
|
2013-01-28 10:40:28 +00:00
|
|
|
#ifdef TARGET_IOS
|
2013-01-19 20:02:34 +00:00
|
|
|
#include "include/SalmonEngineIos.h"
|
|
|
|
#endif
|
|
|
|
|
2013-02-19 12:37:56 +00:00
|
|
|
#endif
|
|
|
|
|
2013-01-19 20:02:34 +00:00
|
|
|
#endif //ENGINE_H_INCLUDED
|