A game about forced loneliness, made by TACStudios
1namespace Unity.VisualScripting 2{ 3 public abstract class UnitInputPortWidget<TPort> : UnitPortWidget<TPort> where TPort : class, IUnitInputPort 4 { 5 protected UnitInputPortWidget(FlowCanvas canvas, TPort port) : base(canvas, port) { } 6 7 protected override Edge edge => Edge.Left; 8 } 9}