Initial commit
This commit is contained in:
21
NethackHelper/Item.cs
Normal file
21
NethackHelper/Item.cs
Normal 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,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user