1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

VS 2019/Windows 10 Kit fix

This commit is contained in:
Victor Luchits 2020-05-05 15:05:15 +03:00
parent febbeaeeed
commit 604246bc7a
2 changed files with 16 additions and 0 deletions

View File

@ -13,6 +13,14 @@
#include "Geometries.h"
#include "../../lib/GameConstants.h"
#ifdef IN
#undef IN
#endif
#ifdef OUT
#undef OUT
#endif
struct SDL_Surface;
class JsonNode;
class CDefFile;

View File

@ -15,6 +15,14 @@
#include "gui/Geometries.h"
#include "SDL.h"
#ifdef IN
#undef IN
#endif
#ifdef OUT
#undef OUT
#endif
class CGObjectInstance;
class CGHeroInstance;
class CGBoat;