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 // virtual function thunks
45 // NOLINTBEGIN
46 MCNAPI void $initRegistry(::EntityRegistry& registry);
47
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCNAPI static void** $vftable();
55 // NOLINTEND
56};
57
58} // namespace VanillaSystems
Definition IECSModule.h:14
Definition EntityRegistry.h:11
Definition IEntitySystems.h:17
Definition ModuleInitArgs.h:7
Definition ActorMoveModule.h:17
static MCAPI void ** $vftable()
MCAPI void $registerSystems(::IEntitySystems &systems, ::ECSModule::ModuleInitArgs const &args)
MCAPI void $initRegistry(::EntityRegistry &registry)
Definition Alias.h:14