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

22 lines
470 B
C#

namespace NethackHelper {
using System.Collections.Generic;
public class Item {
public string Name { get; set; } = string.Empty;
public int Cost { get; set; }
public int Ink { get; set; }
public string? Appearance { get; set; }
}
public class ItemList {
public List<Item> Items { get; set; } = new();
}
public enum ItemAttribute {
Name,
Cost,
Ink,
Appearance,
}
}