TechbloxModdingAPI/GamecraftModdingAPI/Blocks/BlockColors.cs

17 lines
263 B
C#
Raw Normal View History

2020-01-03 00:14:26 +00:00
namespace GamecraftModdingAPI.Blocks
{
public enum BlockColors
{
Default = byte.MaxValue,
White = 0,
Pink,
Purple,
Blue,
Aqua,
Green,
Lime,
Yellow,
Orange,
Red
}
}