Example #1
0
 // Start is called before the first frame update
 public void Initiate(Point from, Point to)
 {
     this.from = from;
     from.AddConnection(this);
     to.AddConnection(this);
     this.to = to;
 }