TechbloxModdingAPI/GamecraftModdingAPI/Blocks/BlockColors.cs
2020-01-03 19:54:35 -05:00

20 lines
No EOL
329 B
C#

namespace GamecraftModdingAPI.Blocks
{
/// <summary>
/// Preset block colours
/// </summary>
public enum BlockColors
{
Default = byte.MaxValue,
White = 0,
Pink,
Purple,
Blue,
Aqua,
Green,
Lime,
Yellow,
Orange,
Red
}
}