LeviLamina
Loading...
Searching...
No Matches
ScriptItemCustomComponent.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#include "mc/scripting/modules/minecraft/items/components/ScriptItemComponent.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace ScriptModuleMinecraft { class ScriptItemStack; }
12namespace ScriptModuleMinecraft { struct ScriptCustomComponentParameters; }
13namespace Scripting { class WeakLifetimeScope; }
14namespace Scripting { struct ClassBinding; }
15// clang-format on
16
17namespace ScriptModuleMinecraft {
18
20public:
21 // member variables
22 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 // vIndex: 0
36 virtual ~ScriptItemCustomComponent() /*override*/ = default;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
44 ::std::string const& name,
46 parameters,
48 );
49 // NOLINTEND
50
51public:
52 // static functions
53 // NOLINTBEGIN
54 MCNAPI static ::Scripting::ClassBinding bind();
55 // NOLINTEND
56
57public:
58 // constructor thunks
59 // NOLINTBEGIN
60 MCNAPI void* $ctor(
62 ::std::string const& name,
64 parameters,
66 );
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCNAPI static void** $vftable();
73 // NOLINTEND
74};
75
76} // namespace ScriptModuleMinecraft
Definition ScriptItemComponent.h:18
Definition ScriptItemCustomComponent.h:19
static MCAPI ::Scripting::ClassBinding bind()
MCAPI void * $ctor(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemStack > itemStackHandle, ::std::string const &name, ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptCustomComponentParameters > const &parameters, ::Scripting::WeakLifetimeScope const &scope)
MCAPI ScriptItemCustomComponent(::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemStack > itemStackHandle, ::std::string const &name, ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptCustomComponentParameters > const &parameters, ::Scripting::WeakLifetimeScope const &scope)
Definition StrongTypedObjectHandle.h:8
Definition WeakLifetimeScope.h:12
Definition Alias.h:14