engine/include/Engine.h

16 lines
281 B
C
Raw Normal View History

2013-01-19 20:02:34 +00:00
#ifndef ENGINE_H_INCLUDED
#define ENGINE_H_INCLUDED
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
#endif //ENGINE_H_INCLUDED