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