File size: 669 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | using System;
namespace Unity.VisualScripting
{
public sealed class UnitRelation : IUnitRelation
{
public UnitRelation(IUnitPort source, IUnitPort destination)
{
Ensure.That(nameof(source)).IsNotNull(source);
Ensure.That(nameof(destination)).IsNotNull(destination);
if (source.unit != destination.unit)
{
throw new NotSupportedException("Cannot create relations across nodes.");
}
this.source = source;
this.destination = destination;
}
public IUnitPort source { get; }
public IUnitPort destination { get; }
}
}
|