LeviLamina
Loading...
Searching...
No Matches
BaseScriptBlockDefinitionalComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/scripting/modules/minecraft/block/components/BaseScriptBlockComponent.h"
7
8// auto generated forward declare list
9// clang-format off
10class Block;
11// clang-format on
12
13namespace ScriptModuleMinecraft {
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::Block const*> mBlock;
20 // NOLINTEND
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 virtual ~BaseScriptBlockDefinitionalComponent() /*override*/;
26
27 virtual bool _isValid() const /*override*/;
28 // NOLINTEND
29
30public:
31 // destructor thunk
32 // NOLINTBEGIN
33 MCFOLD void $dtor();
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39 MCAPI bool $_isValid() const;
40
41
42 // NOLINTEND
43
44public:
45 // vftables
46 // NOLINTBEGIN
47 MCNAPI static void** $vftable();
48 // NOLINTEND
49};
50
51} // namespace ScriptModuleMinecraft
Definition Block.h:43
Definition BaseScriptBlockComponent.h:19
Definition BaseScriptBlockDefinitionalComponent.h:15