LeviLamina
Loading...
Searching...
No Matches
BlockStateDefinition.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/nbt/Tag.h"
7
8// auto generated forward declare list
9// clang-format off
10class ListTag;
11// clang-format on
12
13struct BlockStateDefinition {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 32, ::std::string> mName;
18 ::ll::TypedStorage<1, 1, ::Tag::Type> mType;
19 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::ListTag>> mEnumValues;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 BlockStateDefinition& operator=(BlockStateDefinition const&);
25 BlockStateDefinition(BlockStateDefinition const&);
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCAPI BlockStateDefinition();
31
32 MCAPI BlockStateDefinition(::BlockStateDefinition&&);
33
34 MCAPI void _copy(::BlockStateDefinition const& rhs);
35
36 MCAPI ::BlockStateDefinition& operator=(::BlockStateDefinition&&);
37
38 MCAPI ~BlockStateDefinition();
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCAPI void* $ctor();
45
46 MCAPI void* $ctor(::BlockStateDefinition&&);
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52 MCAPI void $dtor();
53 // NOLINTEND
54};
Definition ListTag.h:19