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 // vIndex: 0
20 virtual ~IPackIOProvider() = default;
21
22 // vIndex: 1
23 virtual ::Bedrock::NotNullNonOwnerPtr<::IFileAccess> getFileAccess(::ResourceFileSystem) const = 0;
24
25 // vIndex: 2
26 virtual ::std::function<::std::string(::Core::Path const&)> getAssetReader() const = 0;
27
28 // vIndex: 3
29 virtual ::Core::Path getOnDiskScratchPath() const = 0;
30
31 // vIndex: 4
32 virtual ::std::unique_ptr<::IPackIOProvider> clone() const = 0;
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38
39 // NOLINTEND
40};
Definition Path.h:17
Definition IFileAccess.h:15
Definition IPackIOProvider.h:15
Definition Path.h:16