From 39a6d0d2923de6fdf3df68dea603586a2481dc8a Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Mon, 22 Mar 2021 11:23:25 +0100 Subject: [PATCH] Add Unix network impl for Android --- Source/Engine/Platform/Network.h | 4 ++-- Source/Engine/Platform/Types.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Engine/Platform/Network.h b/Source/Engine/Platform/Network.h index af9851a0a..c6c99d1f8 100644 --- a/Source/Engine/Platform/Network.h +++ b/Source/Engine/Platform/Network.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved. #pragma once @@ -13,7 +13,7 @@ #elif PLATFORM_XBOX_SCARLETT #include "Win32/Win32Network.h" #elif PLATFORM_ANDROID -#include "Base/NetworkBase.h" +#include "Unix/UnixNetwork.h" #else #error Missing Network implementation! #endif diff --git a/Source/Engine/Platform/Types.h b/Source/Engine/Platform/Types.h index 3cec8ab1a..b43bd2bd5 100644 --- a/Source/Engine/Platform/Types.h +++ b/Source/Engine/Platform/Types.h @@ -137,8 +137,8 @@ class AndroidThread; typedef AndroidThread Thread; class AndroidWindow; typedef AndroidWindow Window; -class NetworkBase; -typedef NetworkBase Network; +class UnixNetwork; +typedef UnixNetwork Network; #else