LeviLamina
Loading...
Searching...
No Matches
ILifetimeObjectListener.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Scripting { class LifetimeRegistry; }
8namespace Scripting { struct ObjectHandle; }
9// clang-format on
10
11namespace Scripting {
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 0
19
20 // vIndex: 1
21 virtual void
22 onMakeObject(::Scripting::LifetimeRegistry&, ::Scripting::ObjectHandle, ::entt::meta_type const&, uint) = 0;
23
24 // vIndex: 2
25 virtual void
26 onDestroyObject(::Scripting::LifetimeRegistry&, ::Scripting::ObjectHandle, ::entt::meta_type const&, uint) = 0;
27 // NOLINTEND
28
29public:
30 // destructor thunk
31 // NOLINTBEGIN
32 MCFOLD void $dtor();
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38
39 // NOLINTEND
40
41public:
42 // vftables
43 // NOLINTBEGIN
44 MCAPI static void** $vftable();
45 // NOLINTEND
46};
47
48} // namespace Scripting
Definition ILifetimeObjectListener.h:13
Definition LifetimeRegistry.h:16
Definition ObjectHandle.h:7