added cost field

This commit is contained in:
s-prechtl 2022-06-01 08:48:52 +02:00
parent 59e46eb4ab
commit 1f2c89c729

View file

@ -8,6 +8,7 @@ public class Item : ScriptableObject, IComparable<Item> {
public int id; //TODO: create an actual ID System that makes snens
public Sprite selectedSprite;
public Sprite defaultSprite;
public int cost;
public Item(string displayName, string description, int id) {
this.displayName = displayName;