LeviLamina
Loading...
Searching...
No Matches
ResourcePackChunkRequestPacketPayload.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct ResourcePackChunkRequestPacketPayload {
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 32, ::std::string> mResourceName;
10 ::ll::TypedStorage<4, 4, int> mChunk;
11 // NOLINTEND
12
13#ifdef LL_PLAT_S
14#else // LL_PLAT_C
15public:
16 // prevent constructor by default
17 ResourcePackChunkRequestPacketPayload();
18
19#endif
20public:
21 // member functions
22 // NOLINTBEGIN
23#ifdef LL_PLAT_C
24 MCAPI ResourcePackChunkRequestPacketPayload(::std::string const& name, int chunk);
25#endif
26
27 MCAPI ~ResourcePackChunkRequestPacketPayload();
28 // NOLINTEND
29
30public:
31 // constructor thunks
32 // NOLINTBEGIN
33#ifdef LL_PLAT_C
34 MCFOLD void* $ctor(::std::string const& name, int chunk);
35#endif
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCFOLD void $dtor();
42 // NOLINTEND
43};