1
0
mirror of https://github.com/lidgren/lidgren-network-gen3.git synced 2026-05-15 22:56:30 +09:00

using constrainedplatform.cs for UNITY_STANDALONE_LINUX

This commit is contained in:
Michael Lidgren
2015-03-31 08:54:54 +02:00
parent fa8b1e986d
commit 59995cc37b
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
#if __CONSTRAINED__
#if __CONSTRAINED__ || UNITY_STANDALONE_LINUX
using System;
using System.Collections.Generic;
using System.Net;

View File

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