/// <summary> /// Checks if this item can be stacked with another item. To stack, both items must contain the same /// stat modifiers, name, description, value, and graphic index. /// </summary> /// <param name="source">Item to check if can stack on this item</param> /// <returns>True if the two items can stack on each other, else false</returns> public abstract bool CanStack(ItemEntityBase source);