LeviLamina
Loading...
Searching...
No Matches
BlockCullingGroup.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/string/HashedString.h"
7#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
8#include "mc/deps/core/utility/NonOwnerPointer.h"
9#include "mc/molang/MolangVersion.h"
10
11// auto generated forward declare list
12// clang-format off
16struct BlockCullingData;
17namespace cereal { struct ReflectionCtx; }
18// clang-format on
19
21public:
22 // member variables
23 // NOLINTBEGIN
24 ::ll::TypedStorage<8, 16, ::std::map<::HashedString, ::BlockCullingData>> mBlockCullingDataMap;
25 ::ll::TypedStorage<8, 8, ::IMinecraftEventing&> mEventing;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 BlockCullingGroup& operator=(BlockCullingGroup const&);
31 BlockCullingGroup(BlockCullingGroup const&);
32 BlockCullingGroup();
33
34public:
35 // virtual functions
36 // NOLINTBEGIN
37 virtual ~BlockCullingGroup() /*override*/ = default;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCAPI explicit BlockCullingGroup(::IMinecraftEventing& eventing);
44
45 MCAPI ::BlockCullingData const* getBlockCullingDataPtr(::HashedString const& identifier);
46
47 MCAPI void loadBlockCullingDataAsync(
48 ::ResourcePackManager& resourcePackManager,
49 ::Bedrock::NotNullNonOwnerPtr<::ResourceLoadManager> resourceLoadManager,
50 ::cereal::ReflectionCtx const& ctx
51 );
52 // NOLINTEND
53
54public:
55 // static functions
56 // NOLINTBEGIN
57 MCAPI static ::std::optional<::BlockCullingData> parseBlockCullingData(
58 ::std::string_view fileWithExtension,
59 ::std::string const& fileData,
60 ::MolangVersion molangVersion,
61 bool isBaseGamePack,
62 ::cereal::ReflectionCtx const& ctx
63 );
64 // NOLINTEND
65
66public:
67 // constructor thunks
68 // NOLINTBEGIN
69 MCAPI void* $ctor(::IMinecraftEventing& eventing);
70 // NOLINTEND
71
72public:
73 // vftables
74 // NOLINTBEGIN
75 MCNAPI static void** $vftable();
76 // NOLINTEND
77};
Definition EnableNonOwnerReferences.h:7
Definition BlockCullingGroup.h:5
static MCAPI void ** $vftable()
Definition IMinecraftEventing.h:145
Definition ResourceLoadManager.h:18
Definition ResourcePackManager.h:38
Definition BlockCullingData.h:5
Definition ReflectionCtx.h:11