LeviLamina
Loading...
Searching...
No Matches
IScriptBlockProperty.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/lifetime_registry/StrongTypedObjectHandle.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockState;
11namespace ScriptModuleMinecraft { class ScriptBlockPermutation; }
12namespace Scripting { struct ClassBinding; }
13// clang-format on
14
15namespace ScriptModuleMinecraft {
16
17class IScriptBlockProperty {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 32, ::std::string> mName;
22 ::ll::TypedStorage<8, 32, ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptBlockPermutation>>
23 mBlockData;
24 ::ll::TypedStorage<8, 8, ::BlockState const*> mBlockState;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 IScriptBlockProperty& operator=(IScriptBlockProperty const&);
30 IScriptBlockProperty(IScriptBlockProperty const&);
31 IScriptBlockProperty();
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 virtual ~IScriptBlockProperty();
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCAPI ::ScriptModuleMinecraft::IScriptBlockProperty& operator=(::ScriptModuleMinecraft::IScriptBlockProperty&&);
43 // NOLINTEND
44
45public:
46 // static functions
47 // NOLINTBEGIN
48 MCAPI static ::Scripting::ClassBinding bindV010();
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54 MCAPI void $dtor();
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCNAPI static void** $vftable();
61 // NOLINTEND
62};
63
64} // namespace ScriptModuleMinecraft
Definition BlockState.h:14
Definition IScriptBlockProperty.h:17
Definition ScriptBlockPermutation.h:24
Definition ClassBinding.h:19