Files
FlaxEngine/Source/Engine/Platform/FileSystem.h
2020-12-07 23:40:54 +01:00

22 lines
563 B
C

// Copyright (c) 2012-2020 Wojciech Figat. All rights reserved.
#pragma once
#if PLATFORM_WINDOWS
#include "Windows/WindowsFileSystem.h"
#elif PLATFORM_UWP
#include "UWP/UWPFileSystem.h"
#elif PLATFORM_LINUX
#include "Linux/LinuxFileSystem.h"
#elif PLATFORM_PS4
#include "Platforms/PS4/Engine/Platform/PS4FileSystem.h"
#elif PLATFORM_XBOX_SCARLETT
#include "Platforms/XboxScarlett/Engine/Platform/XboxScarlettFileSystem.h"
#elif PLATFORM_ANDROID
#include "Android/AndroidFileSystem.h"
#else
#error Missing File System implementation!
#endif
#include "Types.h"