16 lines
173 B
C#
16 lines
173 B
C#
public enum ItemType
|
|
{
|
|
Material,
|
|
Wearable,
|
|
Consumable
|
|
}
|
|
|
|
public class Item
|
|
{
|
|
public ItemType ItemType { get; set; }
|
|
|
|
public Item()
|
|
{
|
|
|
|
}
|
|
} |