From 59995cc37bd8b3ced1559696f4b8b28a1b1b74bc Mon Sep 17 00:00:00 2001 From: Michael Lidgren Date: Tue, 31 Mar 2015 08:54:54 +0200 Subject: [PATCH] using constrainedplatform.cs for UNITY_STANDALONE_LINUX --- Lidgren.Network/Platform/PlatformConstrained.cs | 2 +- Lidgren.Network/Platform/PlatformWin32.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Lidgren.Network/Platform/PlatformConstrained.cs b/Lidgren.Network/Platform/PlatformConstrained.cs index 492b232..0ffe874 100644 --- a/Lidgren.Network/Platform/PlatformConstrained.cs +++ b/Lidgren.Network/Platform/PlatformConstrained.cs @@ -1,4 +1,4 @@ -#if __CONSTRAINED__ +#if __CONSTRAINED__ || UNITY_STANDALONE_LINUX using System; using System.Collections.Generic; using System.Net; diff --git a/Lidgren.Network/Platform/PlatformWin32.cs b/Lidgren.Network/Platform/PlatformWin32.cs index 5ee7250..79f9ced 100644 --- a/Lidgren.Network/Platform/PlatformWin32.cs +++ b/Lidgren.Network/Platform/PlatformWin32.cs @@ -1,4 +1,4 @@ -#if !__ANDROID__ && !__CONSTRAINED__ && !WINDOWS_RUNTIME +#if !__ANDROID__ && !__CONSTRAINED__ && !WINDOWS_RUNTIME && !UNITY_STANDALONE_LINUX using System; using System.Collections.Generic; using System.Diagnostics;