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 IScriptBlockProperty(
43 ::std::string name,
44 ::BlockState const& blockState,
46 );
47
48 MCAPI ::ScriptModuleMinecraft::IScriptBlockProperty& operator=(::ScriptModuleMinecraft::IScriptBlockProperty&&);
49 // NOLINTEND
50
51public:
52 // static functions
53 // NOLINTBEGIN
54 MCAPI static ::Scripting::ClassBinding bindV010();
55 // NOLINTEND
56
57public:
58 // constructor thunks
59 // NOLINTBEGIN
60 MCAPI void* $ctor(
61 ::std::string name,
62 ::BlockState const& blockState,
64 );
65 // NOLINTEND
66
67public:
68 // destructor thunk
69 // NOLINTBEGIN
70 MCAPI void $dtor();
71 // NOLINTEND
72
73public:
74 // vftables
75 // NOLINTBEGIN
76 MCNAPI static void** $vftable();
77 // NOLINTEND
78};
79
80} // namespace ScriptModuleMinecraft
Definition BlockState.h:13
Definition IScriptBlockProperty.h:17
Definition ScriptBlockPermutation.h:23
Definition StrongTypedObjectHandle.h:8
Definition ClassBinding.h:19