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 MCNAPI_C void registerEvents();
29
30 MCNAPI_C ::TickingSystemRegistrationToken registerTickingSystem(::std::unique_ptr<::ITickingSystem> tickingSystem);
31
32 MCNAPI_C void tick();
33
34 MCNAPI_C ~AppSystemRegistry();
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40 MCNAPI_C void $dtor();
41 // NOLINTEND
42};
Definition ITickingSystem.h:15
Definition TickingSystemRegistrationToken.h:10
Definition Alias.h:14