Files
2026-07-13 13:13:17 +08:00

8 lines
166 B
C#

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