mirror of
https://github.com/Colton1skees/Dna
synced 2026-06-21 13:42:09 +00:00
23 lines
482 B
C#
23 lines
482 B
C#
using Dna.Extensions;
|
|
using Rivers;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Dna.ControlFlow
|
|
{
|
|
public class BlockEdge<T> : Edge
|
|
{
|
|
public BasicBlock<T> SourceBlock => Source.GetBlock<T>();
|
|
|
|
public BasicBlock<T> TargetBlock => Target.GetBlock<T>();
|
|
|
|
public BlockEdge(BasicBlock<T> source, BasicBlock<T> target) : base(source, target)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|