Add **Web platform with Emscripten**
This commit is contained in:
19
Source/Engine/Platform/Web/WebFileSystem.h
Normal file
19
Source/Engine/Platform/Web/WebFileSystem.h
Normal file
@@ -0,0 +1,19 @@
|
||||
// Copyright (c) Wojciech Figat. All rights reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#if PLATFORM_WEB
|
||||
|
||||
#include "Engine/Platform/Unix/UnixFileSystem.h"
|
||||
|
||||
/// <summary>
|
||||
/// Web platform implementation of filesystem service.
|
||||
/// </summary>
|
||||
class FLAXENGINE_API WebFileSystem : public UnixFileSystem
|
||||
{
|
||||
public:
|
||||
// [UnixFileSystem]
|
||||
static void GetSpecialFolderPath(const SpecialFolder type, String& result);
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user