项目文件夹

文件
2026-07-13 13:13:17 +08:00

8 行
166 B
C#

using System.Collections.Generic;
namespace T3.Core.Operator.Slots;
public interface IMultiInputSlot : IInputSlot
{
IReadOnlyList<ISlot> GetCollectedInputs();
}