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
18
19 virtual void
20 onMakeObject(::Scripting::LifetimeRegistry&, ::Scripting::ObjectHandle, ::entt::meta_type const&, uint) = 0;
21
22 virtual void
23 onDestroyObject(::Scripting::LifetimeRegistry&, ::Scripting::ObjectHandle, ::entt::meta_type const&, uint) = 0;
24 // NOLINTEND
25
26public:
27 // destructor thunk
28 // NOLINTBEGIN
29 MCNAPI void $dtor();
30 // NOLINTEND
31
32public:
33 // virtual function thunks
34 // NOLINTBEGIN
35
36 // NOLINTEND
37
38public:
39 // vftables
40 // NOLINTBEGIN
41 MCNAPI static void** $vftable();
42 // NOLINTEND
43};
44
45} // namespace Scripting
Definition ILifetimeObjectListener.h:13
static MCAPI void ** $vftable()
Definition LifetimeRegistry.h:19
Definition ObjectHandle.h:7