LeviLamina
Loading...
Searching...
No Matches
LevelLooseFileStorage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/NonOwnerPointer.h"
7
8// auto generated forward declare list
9// clang-format off
10class ContentIdentity;
12namespace Core { class Path; }
13// clang-format on
14
15class LevelLooseFileStorage {
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 LevelLooseFileStorage& operator=(LevelLooseFileStorage const&);
25 LevelLooseFileStorage(LevelLooseFileStorage const&);
26 LevelLooseFileStorage();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31#ifdef LL_PLAT_S
32 MCNAPI LevelLooseFileStorage(
33 ::Core::Path const& levelDirectory,
34 ::ContentIdentity const& contentIdentity,
35 ::Bedrock::NotNullNonOwnerPtr<::IContentKeyProvider const> const& keyProvider
36 );
37#endif
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43#ifdef LL_PLAT_S
44 MCNAPI void* $ctor(
45 ::Core::Path const& levelDirectory,
46 ::ContentIdentity const& contentIdentity,
47 ::Bedrock::NotNullNonOwnerPtr<::IContentKeyProvider const> const& keyProvider
48 );
49#endif
50 // NOLINTEND
51};
Definition ContentIdentity.h:8
Definition Path.h:11
Definition IContentKeyProvider.h:13
Definition Alias.h:14