Пример #1
0
 public GateLink(int v, GateLink from, Gate c)
 {
     Id     = v;
     _from  = from;
     this.c = c;
 }
Пример #2
0
 public GateLink(int id, Gate gate1, Gate gate2)
 {
     Id         = id;
     this.gate1 = gate1;
     this.gate2 = gate2;
 }