LeviLamina
Loading...
Searching...
No Matches
TrailSystem.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#include "mc/world/level/BlockPos.h"
8
9// auto generated forward declare list
10// clang-format off
11class Actor;
13class EntityRegistry;
14class Vec3;
15struct TrailComponent;
16// clang-format on
17
19public:
20 // TrailSystem inner types declare
21 // clang-format off
22 struct BlockPositions;
23 // clang-format on
24
25 // TrailSystem inner types define
27 public:
28 // member variables
29 // NOLINTBEGIN
30 ::ll::TypedStorage<4, 48, ::BlockPos[4]> mBlockPos;
31 // NOLINTEND
32 };
33
34public:
35 // virtual functions
36 // NOLINTBEGIN
37 virtual void tick(::EntityRegistry& registry) /*override*/;
38
39 virtual ~TrailSystem() /*override*/ = default;
40 // NOLINTEND
41
42public:
43 // static functions
44 // NOLINTBEGIN
45 MCAPI static ::TrailSystem::BlockPositions _calculateBlockSpawnPositions(::Actor& actor, ::Vec3& offset);
46
47 MCAPI static void _tickComponent(::ActorOwnerComponent& actorOwnerComponent, ::TrailComponent& trailComponent);
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53 MCAPI void $tick(::EntityRegistry& registry);
54
55
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCNAPI static void** $vftable();
62 // NOLINTEND
63};
Definition ActorOwnerComponent.h:10
Definition Actor.h:105
Definition EntityRegistry.h:11
Definition ITickingSystem.h:15
Definition TrailSystem.h:18
static MCAPI void ** $vftable()
Definition Vec3.h:10
Definition TrailComponent.h:14
Definition TrailSystem.h:26