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 // member functions
26 // NOLINTBEGIN
27 MCAPI ResolvedItemIconInfo();
28
29 MCAPI ResolvedItemIconInfo(uint legacyID, int frame);
30
31 MCAPI ResolvedItemIconInfo(::std::string const& name, int frame, ::ItemIconInfoType type);
32
33 MCAPI ResolvedItemIconInfo(
34 ::std::string const& name,
35 float u0,
36 float u1,
37 float v0,
38 float v1,
39 ushort texSizeW,
40 ushort texSizeH
41 );
42
43 MCAPI ~ResolvedItemIconInfo();
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCAPI void* $ctor();
50
51 MCAPI void* $ctor(uint legacyID, int frame);
52
53 MCAPI void* $ctor(::std::string const& name, int frame, ::ItemIconInfoType type);
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};