iOS runtime impl progress
This commit is contained in:
20
Source/Engine/Platform/iOS/iOSFileSystem.h
Normal file
20
Source/Engine/Platform/iOS/iOSFileSystem.h
Normal file
@@ -0,0 +1,20 @@
|
||||
// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#if PLATFORM_IOS
|
||||
|
||||
#include "Engine/Platform/Apple/AppleFileSystem.h"
|
||||
|
||||
/// <summary>
|
||||
/// iOS platform implementation of filesystem service.
|
||||
/// </summary>
|
||||
class FLAXENGINE_API iOSFileSystem : public AppleFileSystem
|
||||
{
|
||||
public:
|
||||
static bool FileExists(const StringView& path);
|
||||
static uint64 GetFileSize(const StringView& path);
|
||||
static bool IsReadOnly(const StringView& path);
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user