22 lines
470 B
C#
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,
|
|
}
|
|
}
|