A stable modding interface between Techblox and mods https://mod.exmods.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
329B

  1. namespace GamecraftModdingAPI.Blocks
  2. {
  3. /// <summary>
  4. /// Preset block colours
  5. /// </summary>
  6. public enum BlockColors
  7. {
  8. Default = byte.MaxValue,
  9. White = 0,
  10. Pink,
  11. Purple,
  12. Blue,
  13. Aqua,
  14. Green,
  15. Lime,
  16. Yellow,
  17. Orange,
  18. Red
  19. }
  20. }