LeviLamina
Loading...
Searching...
No Matches
IScriptItemCustomComponentSignalCollection.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/events/ScriptDeferredEventListener.h"
7
8// auto generated forward declare list
9// clang-format off
10class ComponentItem;
11class HashedString;
13namespace ScriptModuleMinecraft { class ScriptItemCustomComponentInterface; }
14// clang-format on
15
16namespace ScriptModuleMinecraft {
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 virtual ~IScriptItemCustomComponentSignalCollection() /*override*/ = default;
23
24 virtual void registerClosures(
25 ::HashedString const& componentName,
27 ) = 0;
28
29 virtual void
30 subscribeToItemForComponent(::ComponentItem& item, ::std::vector<::ItemCustomComponentData> const& components) = 0;
31
32 virtual void clear() = 0;
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38
39 // NOLINTEND
40};
41
42} // namespace ScriptModuleMinecraft
Definition ComponentItem.h:55
Definition HashedString.h:5
Definition ScriptDeferredEventListener.h:10
Definition IScriptItemCustomComponentSignalCollection.h:18
Definition ScriptItemCustomComponentInterface.h:15
Definition ItemCustomComponentData.h:10