mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-25 03:40:26 +01:00
More #ifdef for TFE build
This commit is contained in:
parent
e37a80ef83
commit
189edcb75f
|
@ -33,7 +33,11 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||
#include <Engine/CurrentVersion.h>
|
||||
#include <GameMP/Game.h>
|
||||
#define DECL_DLL
|
||||
#ifdef FIRST_ENCOUNTER
|
||||
#include <Entities/Global.h>
|
||||
#else
|
||||
#include <EntitiesMP/Global.h>
|
||||
#endif
|
||||
#include "resource.h"
|
||||
#include "SplashScreen.h"
|
||||
#include "MainWindow.h"
|
||||
|
|
|
@ -34,11 +34,19 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||
#define DECL_DLL
|
||||
#endif
|
||||
|
||||
#ifdef FIRST_ENCOUNTER
|
||||
#include <Entities/Global.h>
|
||||
#include <Entities/Common/Common.h>
|
||||
#include <Entities/Common/GameInterface.h>
|
||||
#include <Entities/WorldLink.h>
|
||||
#include <Entities/Player.h>
|
||||
#else
|
||||
#include <EntitiesMP/Global.h>
|
||||
#include <EntitiesMP/Common/Common.h>
|
||||
#include <EntitiesMP/Common/GameInterface.h>
|
||||
#include <EntitiesMP/WorldLink.h>
|
||||
#include <EntitiesMP/Player.h>
|
||||
#endif
|
||||
#undef DECL_DLL
|
||||
|
||||
#include "SeriousSam.h"
|
||||
|
|
Loading…
Reference in New Issue
Block a user