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