TechbloxModdingAPI/GamecraftModdingAPI/Blocks/BlockColors.cs

20 lines
329 B
C#
Raw Normal View History

2020-01-03 00:14:26 +00:00
namespace GamecraftModdingAPI.Blocks
{
2020-01-04 00:54:35 +00:00
/// <summary>
/// Preset block colours
/// </summary>
2020-01-03 00:14:26 +00:00
public enum BlockColors
{
Default = byte.MaxValue,
White = 0,
Pink,
Purple,
Blue,
Aqua,
Green,
Lime,
Yellow,
Orange,
Red
}
}