20 lines
343 B
C#
20 lines
343 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EveCalc.Shared
|
|
{
|
|
public enum Materials
|
|
{
|
|
Tritanium = 34,
|
|
Pyerite = 35,
|
|
Mexallon = 36,
|
|
Isogen = 37,
|
|
Nocxium = 38,
|
|
Zydrine = 39,
|
|
Megacyte = 40
|
|
}
|
|
}
|