public Computer(Int64[] program, bool manualPlay = false) { Program = new Int64[program.Length]; program.CopyTo(Program, 0); Brain = new Intcode(Program); ManualPlay = manualPlay; Recording = new Queue <string>(); }
public void Reset() { Brain = new Intcode(Program); }