using System.Collections; using System.Collections.Generic; using UnityEngine; /// /// Defines a class that contains an inventory /// public interface IInventoryContainer { Inventory Inventory { get; } }