More #ifdef for TFE build

This commit is contained in:
ptitSeb 2016-09-22 12:15:57 +02:00
parent e37a80ef83
commit 189edcb75f
2 changed files with 12 additions and 0 deletions

View File

@ -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"

View File

@ -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"