Initial commit

This commit is contained in:
2025-09-24 00:56:17 -05:00
commit 7e5e7aad40
35 changed files with 3091 additions and 0 deletions

21
NethackHelper/Item.cs Normal file
View File

@@ -0,0 +1,21 @@
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,
}
}