using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TrueCraft.API { /// /// Enumerates the different types of ore in TrueCraft. /// public enum OreTypes { /// /// Coal ore. /// Coal, /// /// Lapis lazuli ore. /// Lapiz, /// /// Iron ore. /// Iron, /// /// Gold ore. /// Gold, /// /// Redstone ore. /// Redstone, /// /// Diamond ore. /// Diamond } }