18 lines
239 B
C#
18 lines
239 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace TrueCraft.API
|
|
{
|
|
public enum OreTypes
|
|
{
|
|
Coal,
|
|
Lapiz,
|
|
Iron,
|
|
Gold,
|
|
Redstone,
|
|
Diamond
|
|
}
|
|
}
|