LeviLamina
Loading...
Searching...
No Matches
ScriptWidget_ComponentInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class AABB;
8namespace Scripting { class WeakLifetimeScope; }
9namespace mce { class UUID; }
10// clang-format on
11
12namespace Editor::ScriptModule {
13
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 virtual ::Scripting::WeakLifetimeScope& _getScope() = 0;
19
20 virtual void _deleteComponent(::mce::UUID const&) = 0;
21
22 virtual ::AABB const& _getWorldBounds() const = 0;
23 // NOLINTEND
24
25public:
26 // virtual function thunks
27 // NOLINTBEGIN
28
29 // NOLINTEND
30};
31
32} // namespace Editor::ScriptModule
Definition AABB.h:18
Definition ScriptWidget_ComponentInterface.h:14
Definition WeakLifetimeScope.h:7
Definition UUID.h:7