13 lines
423 B
C#
13 lines
423 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ColdMint.scripts.inventory;
|
|
|
|
public interface IItemContainerDisplay : IEnumerable<IItemDisplay>
|
|
{
|
|
/// <summary>
|
|
/// <para>Bind an item container to the item container display</para>
|
|
/// <para>为物品容器显示器绑定物品容器</para>
|
|
/// </summary>
|
|
/// <param name="itemContainer"></param>
|
|
void BindItemContainer(IItemContainer? itemContainer);
|
|
} |