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
24#ifdef LL_PLAT_S
25#else // LL_PLAT_C
26public:
27 // prevent constructor by default
28 ResolvedItemIconInfo& operator=(ResolvedItemIconInfo const&);
29 ResolvedItemIconInfo(ResolvedItemIconInfo const&);
30
31#endif
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI ResolvedItemIconInfo();
36
37 MCAPI ResolvedItemIconInfo(::std::string const& name, int frame, ::ItemIconInfoType type);
38
39#ifdef LL_PLAT_C
40 MCAPI ::ResolvedItemIconInfo& operator=(::ResolvedItemIconInfo&&);
41#endif
42
43 MCAPI ~ResolvedItemIconInfo();
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCAPI void* $ctor();
50
51 MCAPI void* $ctor(::std::string const& name, int frame, ::ItemIconInfoType type);
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57 MCFOLD void $dtor();
58 // NOLINTEND
59};