LeviLamina
Loading...
Searching...
No Matches
CustomBlockStateVariant.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/states/BlockState.h"
7
8// auto generated forward declare list
9// clang-format off
10class CompoundTag;
11class ListTag;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 1
32 virtual void toNBT(::CompoundTag& tag, int val) const /*override*/;
33
34 // vIndex: 2
35 virtual bool fromNBT(::CompoundTag const& tag, int& outValue) const /*override*/;
36
37 // vIndex: 0
38 virtual ~CustomBlockStateVariant() /*override*/ = default;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI CustomBlockStateVariant(uint64 id, ::std::string const& name, ::ListTag const& values);
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCAPI void* $ctor(uint64 id, ::std::string const& name, ::ListTag const& values);
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56
57 // NOLINTEND
58
59public:
60 // virtual function thunks
61 // NOLINTBEGIN
62 MCAPI void $toNBT(::CompoundTag& tag, int val) const;
63
64 MCAPI bool $fromNBT(::CompoundTag const& tag, int& outValue) const;
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCAPI static void** $vftable();
71 // NOLINTEND
72};
Definition BlockState.h:11
Definition CompoundTag.h:13
Definition CustomBlockStateVariant.h:14
Definition ListTag.h:12
Definition Alias.h:14