Exemple #1
0
 // Links the output of this computer to the input of the target computer.
 public void OutputTo(V3 target)
 {
     target.Input = Output;
 }
Exemple #2
0
 public V3(V3 source)
 {
     Memory = new int[source.Memory.Length];
     Array.Copy(source.Memory, Memory, Memory.Length);
 }