8 lines
166 B
C#
8 lines
166 B
C#
using System.Collections.Generic;
|
|
|
|
namespace T3.Core.Operator.Slots;
|
|
|
|
public interface IMultiInputSlot : IInputSlot
|
|
{
|
|
IReadOnlyList<ISlot> GetCollectedInputs();
|
|
} |