LeviLamina
Loading...
Searching...
No Matches
UIItemRenderInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct UIItemRenderInfo {
6public:
7 // UIItemRenderInfo inner types define
8 enum class Flags : uchar {
9 // bitfield representation
10 Default = 0,
11 NeedsDepth = 1 << 0,
12 DoubleSidedAlpha = 1 << 1,
13 SingleSidedAlpha = 1 << 2,
14 Blend = 1 << 3,
15 };
16
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<1, 1, uchar> info;
21 // NOLINTEND
22};
Definition UIItemRenderInfo.h:5