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