using System.Collections; using System.Collections.Generic; using UnityEngine; [System.Serializable] public class Nothing : Item { public Nothing() { name = ""; price = -1; effect = null; consumable = false; description = "Nothing."; } }