LeviLamina
Loading...
Searching...
No Matches
IPackIOProvider.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/resource/ResourceFileSystem.h"
7#include "mc/deps/core/utility/NonOwnerPointer.h"
8
9// auto generated forward declare list
10// clang-format off
11class IFileAccess;
12namespace Core { class Path; }
13// clang-format on
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 virtual ~IPackIOProvider() = default;
20
21 virtual ::Bedrock::NotNullNonOwnerPtr<::IFileAccess> getFileAccess(::ResourceFileSystem) const = 0;
22
23 virtual ::std::function<::std::string(::Core::Path const&)> getAssetReader() const = 0;
24
25 virtual ::Core::Path getOnDiskScratchPath() const = 0;
26
27 virtual ::std::unique_ptr<::IPackIOProvider> clone() const = 0;
28 // NOLINTEND
29
30public:
31 // virtual function thunks
32 // NOLINTBEGIN
33
34 // NOLINTEND
35};
Definition Path.h:10
Definition IFileAccess.h:15
Definition IPackIOProvider.h:15