Ejemplo n.º 1
0
 private void SendValue(MoveChipType outputType, int label, int value)
 {
     if (outputType == MoveChipType.Bot)
     {
         SendToBot(label, value);
     }
     else if (outputType == MoveChipType.Output)
     {
         AddToOutputBin(label, value);
     }
 }
Ejemplo n.º 2
0
 public MoveChipInstructionBuilder ForHigherType(MoveChipType type)
 {
     instruction.Higher = type;
     return(this);
 }