예제 #1
0
 public GameMonitor(Config config)
 {
     State     = State.Stop;
     _config   = config;
     Simulator = new SimulatorInfo(config);
     Player    = new PlayerInfo(config, Simulator);
 }
예제 #2
0
 public GameMonitor(Config config)
 {
     this.State     = LineageMTool.State.Stop;
     this._config   = config;
     this.Simulator = new SimulatorInfo(config);
     this.Player    = new PlayerInfo(config, this.Simulator);
 }
예제 #3
0
 public PlayerInfo(Config config, SimulatorInfo simulatorInfo)
 {
     _config        = config;
     _simulatorInfo = simulatorInfo;
 }
예제 #4
0
 public PlayerInfo(Config config, SimulatorInfo simulatorInfo)
 {
     this._config        = config;
     this._simulatorInfo = simulatorInfo;
 }