From 6bb419e3623383f71ea5e33146c15d7a1e94d5a9 Mon Sep 17 00:00:00 2001 From: Ilya Orlov Date: Mon, 13 Aug 2018 01:26:56 +0300 Subject: [PATCH] xrEngine: return xr_pure_interface members in linux build --- src/xrEngine/IObjectPhysicsCollision.h | 2 -- src/xrEngine/IPHdebug.h | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/xrEngine/IObjectPhysicsCollision.h b/src/xrEngine/IObjectPhysicsCollision.h index 2aa43372be3..960f3008471 100644 --- a/src/xrEngine/IObjectPhysicsCollision.h +++ b/src/xrEngine/IObjectPhysicsCollision.h @@ -2,11 +2,9 @@ class IPhysicsShell; class IPhysicsElement; -#if defined(WINDOWS) xr_pure_interface IObjectPhysicsCollision { public: virtual const IPhysicsShell* physics_shell() const = 0; virtual const IPhysicsElement* physics_character() const = 0; // depricated }; -#endif diff --git a/src/xrEngine/IPHdebug.h b/src/xrEngine/IPHdebug.h index d47677f9390..ba5e7b90022 100644 --- a/src/xrEngine/IPHdebug.h +++ b/src/xrEngine/IPHdebug.h @@ -2,7 +2,6 @@ #include "xrCore/_types.h" -#if defined(WINDOWS) xr_pure_interface IPhDebugRender { virtual void open_cashed_draw() = 0; @@ -11,4 +10,3 @@ xr_pure_interface IPhDebugRender }; extern ENGINE_API IPhDebugRender* ph_debug_render; -#endif