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.

17 lines
263B

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