Files
NethackHelper/NethackHelper/Versions.cs
2025-09-24 00:56:17 -05:00

10 lines
280 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; }
}
}