LeviLamina
Loading...
Searching...
No Matches
ClientSynchedActorEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/network/packet/ActorEventPacketPayload.h"
7
8struct ClientSynchedActorEvent : public ::ActorEventPacketPayload {
9public:
10 // member variables
11 // NOLINTBEGIN
12 ::ll::TypedStorage<4, 4, int> mTickDelay;
13 // NOLINTEND
14
15#ifdef LL_PLAT_S
16#else // LL_PLAT_C
17public:
18 // prevent constructor by default
19 ClientSynchedActorEvent();
20
21#endif
22public:
23 // member functions
24 // NOLINTBEGIN
25#ifdef LL_PLAT_C
26 MCAPI explicit ClientSynchedActorEvent(::ActorEventPacketPayload const& payload);
27#endif
28 // NOLINTEND
29
30public:
31 // constructor thunks
32 // NOLINTBEGIN
33#ifdef LL_PLAT_C
34 MCAPI void* $ctor(::ActorEventPacketPayload const& payload);
35#endif
36 // NOLINTEND
37};
Definition ActorEventPacketPayload.h:10