LeviLamina
Loading...
Searching...
No Matches
AppPlatformIOProvider.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#include "mc/resources/IPackIOProvider.h"
9
10// auto generated forward declare list
11// clang-format off
12class IFileAccess;
13namespace Core { class Path; }
14// clang-format on
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 virtual ::Bedrock::NotNullNonOwnerPtr<::IFileAccess> getFileAccess(::ResourceFileSystem system) const /*override*/;
21
22 virtual ::std::function<::std::string(::Core::Path const&)> getAssetReader() const /*override*/;
23
24 virtual ::Core::Path getOnDiskScratchPath() const /*override*/;
25
26 virtual ::std::unique_ptr<::IPackIOProvider> clone() const /*override*/;
27 // NOLINTEND
28
29public:
30 // virtual function thunks
31 // NOLINTBEGIN
32 MCNAPI ::Bedrock::NotNullNonOwnerPtr<::IFileAccess> $getFileAccess(::ResourceFileSystem system) const;
33
34 MCNAPI ::std::function<::std::string(::Core::Path const&)> $getAssetReader() const;
35
36 MCNAPI ::Core::Path $getOnDiskScratchPath() const;
37
38 MCNAPI ::std::unique_ptr<::IPackIOProvider> $clone() const;
39
40
41 // NOLINTEND
42
43public:
44 // vftables
45 // NOLINTBEGIN
46 MCNAPI static void** $vftable();
47 // NOLINTEND
48};
Definition AppPlatformIOProvider.h:16
MCAPI ::Bedrock::NotNullNonOwnerPtr<::IFileAccess > $getFileAccess(::ResourceFileSystem system) const
MCAPI::Core::Path $getOnDiskScratchPath() const
MCAPI ::std::unique_ptr<::IPackIOProvider > $clone() const
static MCAPI void ** $vftable()
MCAPI ::std::function<::std::string(::Core::Path const &)> $getAssetReader() const
Definition Path.h:12
Definition IFileAccess.h:15
Definition IPackIOProvider.h:15