LLAPI Transport not available on WSA/UWP (v2) (#838)

* LLAPITransport will not be available for WSA/UWP applications with this patch. (LLAPI never was to begin with).

* v2 of the not allowing LLAPI Transport to be available on UWP/WSA games
This commit is contained in:
Coburn 2019-04-22 19:15:17 +10:00 committed by vis2k
parent 7058de2364
commit 2695da4e2a

View File

@ -4,7 +4,7 @@
// TODO: Check if LLAPI is supported on Xbox One?
// LLAPITransport wraps UNET's LLAPI for use as a HLAPI TransportLayer, only if you're not on a UWP platform.
#if !UNITY_WSA || !UNITY_WSA_10_0 || !UNITY_WINRT || !UNITY_WINRT_10_0
#if !(UNITY_WSA || UNITY_WSA_10_0 || UNITY_WINRT || UNITY_WINRT_10_0 || NETFX_CORE)
using System;
using System.ComponentModel;