コード例 #1
0
        private void StartOldSim()
        {
            this.Simulation = SPY_Simulation.DeserializeFromJSONFile(this.file);

            this.Simulation.ProgressReported += this.ProcessProgressReport;

            this.Simulation.Run();
        }
コード例 #2
0
        private void StartNewSim()
        {
            this.Simulation = new SPY_Simulation(11, 8, 6, 50, 10, SPY_History.DeserializeFromJSONFile(this.file));

            this.Simulation.ProgressReported += this.ProcessProgressReport;

            this.Simulation.Run();
        }