TechbloxModdingAPI/GamecraftModdingAPI/Blocks/BlockColors.cs

20 lines
329 B
C#
Raw Normal View History

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