public Simulator(ServerInterface serverInterface, string simId) { this.simId = simId; this.simInterface = serverInterface.ConnectToSim(this.simId); this.Init(); this.log = new SimulatorLog(this.simInterface); }
public Simulator(ServerInterface serverInterface, string name, string description) { this.simId = serverInterface.StartSim(name, description); this.simInterface = serverInterface.ConnectToSim(this.simId); this.Init(); this.log = new SimulatorLog(this.simInterface); }