TechbloxModdingAPI/GamecraftModdingAPI/Blocks/BlockColors.cs
2020-01-03 01:21:47 +01:00

17 lines
No EOL
263 B
C#

namespace GamecraftModdingAPI.Blocks
{
public enum BlockColors
{
Default = byte.MaxValue,
White = 0,
Pink,
Purple,
Blue,
Aqua,
Green,
Lime,
Yellow,
Orange,
Red
}
}