LeviLamina
Loading...
Searching...
No Matches
DyeColorUtil.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/ItemColor.h"
7
8// auto generated forward declare list
9// clang-format off
10class Random;
11// clang-format on
12
14public:
15 // static functions
16 // NOLINTBEGIN
17 MCAPI static int getAuxValue(::ItemColor color);
18
19 MCAPI static ::ItemColor getItemColor(int auxValue);
20
21 MCAPI static ::ItemColor getRandomItemColor(::Random& random);
22 // NOLINTEND
23
24public:
25 // static variables
26 // NOLINTBEGIN
27 MCAPI static ::std::array<short, 16> const& COLOR_TO_AUX();
28
29 MCAPI static ::std::array<short, 16> const& DYE_AUX_VALUES();
30
31 MCAPI static ::std::array<::ItemColor, 20> const& mColorMap();
32 // NOLINTEND
33};
Definition DyeColorUtil.h:13
Definition Random.h:10