LeviLamina
Loading...
Searching...
No Matches
RailActivatorSystem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/ecs/systems/ITickingSystem.h"
7
8// auto generated forward declare list
9// clang-format off
11class EntityContext;
12class EntityRegistry;
14// clang-format on
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 2
21 virtual void tick(::EntityRegistry& registry) /*override*/;
22
23 // vIndex: 0
24 virtual ~RailActivatorSystem() /*override*/ = default;
25 // NOLINTEND
26
27public:
28 // static functions
29 // NOLINTBEGIN
30 MCAPI static void _tickComponent(
31 ::EntityContext& entity,
32 ::ActorOwnerComponent& actorOwnerComponent,
33 ::RailActivatorComponent& railActivatorComponent
34 );
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46 MCAPI void $tick(::EntityRegistry& registry);
47 // NOLINTEND
48
49public:
50 // vftables
51 // NOLINTBEGIN
52 MCAPI static void** $vftable();
53 // NOLINTEND
54};
Definition ActorOwnerComponent.h:10
Definition EntityContext.h:16
Definition EntityRegistry.h:15
Definition ITickingSystem.h:15
Definition RailActivatorComponent.h:11
Definition RailActivatorSystem.h:16