Files
FlaxEngine/Source/Engine/Platform/User.h
2023-01-10 15:29:37 +01:00

18 lines
431 B
C

// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
#pragma once
#if PLATFORM_XBOX_ONE || PLATFORM_XBOX_SCARLETT
#include "GDK/GDKUser.h"
#elif PLATFORM_SWITCH
#include "Platforms/Switch/Engine/Platform/SwitchUser.h"
#elif PLATFORM_PS4
#include "Platforms/PS4/Engine/Platform/PS4User.h"
#elif PLATFORM_PS5
#include "Platforms/PS5/Engine/Platform/PS5User.h"
#else
#include "Base/UserBase.h"
#endif
#include "Types.h"