Files
NethackHelper/NethackHelper/Versions.cs
2025-09-24 23:54:20 -05:00

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; }
}
}