LeviLamina
Loading...
Searching...
No Matches
ScriptMovementBasicComponentFactory.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/components/IComponentFactory.h"
8
9// auto generated forward declare list
10// clang-format off
11class WeakEntityRef;
12namespace ScriptModuleMinecraft { class ScriptActorComponent; }
13namespace Scripting { class WeakLifetimeScope; }
14// clang-format on
15
16namespace ScriptModuleMinecraft {
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 0
23 virtual ~ScriptMovementBasicComponentFactory() /*override*/ = default;
24
25 // vIndex: 1
26 virtual ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActorComponent> createComponent(
27 ::WeakEntityRef entity,
29 ::std::string const& id
30 ) /*override*/;
31
32 // vIndex: 2
33 virtual bool hasComponent(::WeakEntityRef entity) const /*override*/;
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCAPI ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptActorComponent>
46 $createComponent(::WeakEntityRef entity, ::Scripting::WeakLifetimeScope const& scope, ::std::string const& id);
47
48 MCAPI bool $hasComponent(::WeakEntityRef entity) const;
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCAPI static void** $vftable();
55 // NOLINTEND
56};
57
58} // namespace ScriptModuleMinecraft
Definition IComponentFactory.h:17
Definition ScriptMovementBasicComponentFactory.h:18
Definition WeakLifetimeScope.h:12
Definition WeakEntityRef.h:14