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

14 lines
339 B
C#

using System;
namespace T3.Core.Operator.Slots;
public interface IInputSlot : ISlot
{
Symbol.Child.Input Input { get; set; }
Type MappedType { get; set; }
bool IsMultiInput { get; }
bool IsDirty { get; }
void RestoreUpdateAction();
bool TryGetAsMultiInput(out IMultiInputSlot multiInput);
void SetVisited();
}