LeviLamina
Loading...
Searching...
No Matches
ActorMoveModule.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/ecs_module/IECSModule.h"
7
8// auto generated forward declare list
9// clang-format off
10class EntityRegistry;
11class IEntitySystems;
12namespace ECSModule { struct ModuleInitArgs; }
13// clang-format on
14
15namespace VanillaSystems {
16
18public:
19 // member variables
20 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 ActorMoveModule& operator=(ActorMoveModule const&);
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 1
34 virtual void initRegistry(::EntityRegistry& registry) /*override*/;
35
36 // vIndex: 2
37 virtual void registerSystems(::IEntitySystems& systems, ::ECSModule::ModuleInitArgs const& args) /*override*/;
38
39 // vIndex: 0
40 virtual ~ActorMoveModule() /*override*/ = default;
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCAPI void $initRegistry(::EntityRegistry& registry);
53
54 MCAPI void $registerSystems(::IEntitySystems& systems, ::ECSModule::ModuleInitArgs const& args);
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCAPI static void** $vftable();
61 // NOLINTEND
62};
63
64} // namespace VanillaSystems
Definition IECSModule.h:14
Definition EntityRegistry.h:15
Definition IEntitySystems.h:17
Definition ModuleInitArgs.h:7
Definition ActorMoveModule.h:17
Definition Alias.h:14