Skip to content

Commit

Permalink
add Win32 check for Win32 specific Unreal header
Browse files Browse the repository at this point in the history
  • Loading branch information
sytelus committed Aug 19, 2017
1 parent d860bae commit ce2087e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Unreal/Plugins/AirSim/Source/MultiRotorConnector.cpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
#include "MultiRotorConnector.h"

#ifdef AIRLIB_NO_RPC
#include "api/DebugApiServer.hpp"
#else

#if defined _WIN32 || defined _WIN64
#include "AllowWindowsPlatformTypes.h"
#endif
#include "api/RpcLibServer.hpp"
#if defined _WIN32 || defined _WIN64
#include "HideWindowsPlatformTypes.h"
#endif

#endif

#include "AirBlueprintLib.h"
#include "NedTransform.h"
#include <exception>
Expand Down

0 comments on commit ce2087e

Please sign in to comment.