using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TrueCraft.Core.Logic.Items { public abstract class FoodItem : ItemProvider { /// /// The amount of health this food restores. /// public abstract float Restores { get; } //Most foods aren't stackable public override sbyte MaximumStack { get { return 1; } } } }