20 lines
No EOL
329 B
C#
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
|
|
}
|
|
} |