LeviLamina
Loading...
Searching...
No Matches
Combination.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace PaletteColorUtilities {
6
7enum class Combination : uint {
8 WhiteBlack = 15,
9 WhiteGray = 7,
10 WhiteRed = 14,
11 WhiteBlue = 11,
12 WhiteGreen = 13,
13 YellowRed = 78,
14 PinkPurple = 106,
15 BlueGreen = 189,
16 BlueRed = 190,
17};
18
19}