예제 #1
0
파일: Simulator.cs 프로젝트: xuan2261/logix
 public void RemoveWire(DrawableWire wire)
 {
     if (AllWires.Contains(wire))
     {
         AllWires.Remove(wire);
     }
 }
예제 #2
0
파일: Simulator.cs 프로젝트: xuan2261/logix
 public void AddWire(DrawableWire wire)
 {
     AllWires.Add(wire);
 }