LeviLamina
Loading...
Searching...
No Matches
AppSystemRegistry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
9// clang-format on
10
11class AppSystemRegistry {
12public:
13 // member variables
14 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 AppSystemRegistry& operator=(AppSystemRegistry const&);
22 AppSystemRegistry(AppSystemRegistry const&);
23 AppSystemRegistry();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28#ifdef LL_PLAT_C
29 MCNAPI void registerEvents();
30
31 MCNAPI ::TickingSystemRegistrationToken registerTickingSystem(::std::unique_ptr<::ITickingSystem> tickingSystem);
32
33 MCNAPI void tick();
34
35 MCNAPI ~AppSystemRegistry();
36#endif
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42#ifdef LL_PLAT_C
43 MCNAPI void $dtor();
44#endif
45 // NOLINTEND
46};
Definition ITickingSystem.h:15
Definition TickingSystemRegistrationToken.h:10
Definition Alias.h:14