コード例 #1
0
ファイル: Simulator.cs プロジェクト: egon-sim/egon_gui
        public Simulator(ServerInterface serverInterface, string simId)
        {
            this.simId = simId;
            this.simInterface = serverInterface.ConnectToSim(this.simId);

            this.Init();
            this.log = new SimulatorLog(this.simInterface);
        }
コード例 #2
0
ファイル: Simulator.cs プロジェクト: egon-sim/egon_gui
        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);
        }