24 lines
575 B
C
24 lines
575 B
C
// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
|
|
|
|
#pragma once
|
|
|
|
#if PLATFORM_WINDOWS
|
|
#include "Win32/Win32Thread.h"
|
|
#elif PLATFORM_UWP
|
|
#include "Win32/Win32Thread.h"
|
|
#elif PLATFORM_LINUX
|
|
#include "Linux/LinuxThread.h"
|
|
#elif PLATFORM_PS4
|
|
#include "Platforms/PS4/Engine/Platform/PS4Thread.h"
|
|
#elif PLATFORM_XBOX_SCARLETT
|
|
#include "Win32/Win32Thread.h"
|
|
#elif PLATFORM_ANDROID
|
|
#include "Android/AndroidThread.h"
|
|
#elif PLATFORM_SWITCH
|
|
#include "Platforms/Switch/Engine/Platform/SwitchThread.h"
|
|
#else
|
|
#error Missing Thread implementation!
|
|
#endif
|
|
|
|
#include "Types.h"
|