LeviLamina
Loading...
Searching...
No Matches
ResolvedItemIconInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/ItemIconInfoType.h"
7
8struct ResolvedItemIconInfo {
9public:
10 // member variables
11 // NOLINTBEGIN
12 ::ll::TypedStorage<8, 32, ::std::string> mIconName;
13 ::ll::TypedStorage<4, 4, int> mIconFrame;
14 ::ll::TypedStorage<4, 4, ::ItemIconInfoType> mIconType;
15 ::ll::TypedStorage<4, 4, uint> mRuntimeBlockID;
16 ::ll::TypedStorage<4, 4, float> mU0;
17 ::ll::TypedStorage<4, 4, float> mV0;
18 ::ll::TypedStorage<4, 4, float> mU1;
19 ::ll::TypedStorage<4, 4, float> mV1;
20 ::ll::TypedStorage<2, 2, ushort> mTexSizeW;
21 ::ll::TypedStorage<2, 2, ushort> mTexSizeH;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 ResolvedItemIconInfo();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31#ifdef LL_PLAT_C
32 MCAPI ResolvedItemIconInfo(::std::string const& name, int frame, ::ItemIconInfoType type);
33#endif
34
35 MCAPI ResolvedItemIconInfo(
36 ::std::string const& name,
37 float u0,
38 float u1,
39 float v0,
40 float v1,
41 ushort texSizeW,
42 ushort texSizeH
43 );
44
45 MCAPI ~ResolvedItemIconInfo();
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51#ifdef LL_PLAT_C
52 MCAPI void* $ctor(::std::string const& name, int frame, ::ItemIconInfoType type);
53#endif
54
55 MCAPI void*
56 $ctor(::std::string const& name, float u0, float u1, float v0, float v1, ushort texSizeW, ushort texSizeH);
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62 MCFOLD void $dtor();
63 // NOLINTEND
64};