14 lines
455 B
C#
14 lines
455 B
C#
namespace NethackHelper {
|
|
internal struct Version {
|
|
public string Name { get; set; }
|
|
public string Scrolls { get; set; }
|
|
public string Potions { get; set; }
|
|
public string Wands { get; set; }
|
|
public string Rings { get; set; }
|
|
public string Spellbooks { get; set; }
|
|
public string Amulets { get; set; }
|
|
public string Tools { get; set; }
|
|
public string Armor { get; set; }
|
|
}
|
|
}
|