LeviLamina
Loading...
Searching...
No Matches
ScriptWidget_GroupInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Editor::Network { class WidgetComponentStateChangePayload; }
8namespace Editor::Network { class WidgetStateChangePayload; }
9// clang-format on
10
11namespace Editor::ScriptModule {
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 0
18 virtual void _performDeleteWidget(bool) = 0;
19
20 // vIndex: 1
21 virtual void _setValid(bool) = 0;
22
23 // vIndex: 2
24 virtual void _handleWidgetStateChangePayload(::Editor::Network::WidgetStateChangePayload const& payload) = 0;
25
26 // vIndex: 3
27 virtual void
28 _handleWidgetComponentStateChangePayload(::Editor::Network::WidgetComponentStateChangePayload const& payload) = 0;
29
30 // vIndex: 4
31 virtual void _servicePendingStateChanges() = 0;
32
33 // vIndex: 5
34 virtual void _setSelectedNoBroadcast(bool) = 0;
35 // NOLINTEND
36
37public:
38 // virtual function thunks
39 // NOLINTBEGIN
40
41 // NOLINTEND
42};
43
44} // namespace Editor::ScriptModule
Definition WidgetComponentStateChangePayload.h:18
Definition WidgetStateChangePayload.h:17
Definition ScriptWidget_GroupInterface.h:13