// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once #if PLATFORM_UWP #include "Engine/Platform/Win32/Win32FileSystem.h" /// /// Universal Windows Platform (UWP) implementation of filesystem service /// class FLAXENGINE_API UWPFileSystem : public Win32FileSystem { public: /// /// Gets the special folder path. /// /// The folder type. /// The result full path. static void GetSpecialFolderPath(const SpecialFolder type, String& result); }; #endif