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
28 virtual ~AppPlatformIOProvider() /*override*/ = default;
29 // NOLINTEND
30
31public:
32 // virtual function thunks
33 // NOLINTBEGIN
34 MCNAPI ::Bedrock::NotNullNonOwnerPtr<::IFileAccess> $getFileAccess(::ResourceFileSystem system) const;
35
36 MCNAPI ::std::function<::std::string(::Core::Path const&)> $getAssetReader() const;
37
38 MCNAPI ::Core::Path $getOnDiskScratchPath() const;
39
40 MCNAPI ::std::unique_ptr<::IPackIOProvider> $clone() const;
41
42
43 // NOLINTEND
44
45public:
46 // vftables
47 // NOLINTBEGIN
48 MCNAPI static void** $vftable();
49 // NOLINTEND
50};
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:10
Definition IFileAccess.h:15
Definition IPackIOProvider.h:15