TechbloxModdingAPI/GamecraftModdingAPI/Blocks/BlockColors.cs

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
}
}