Exemplo n.º 1
0
 public GameMonitor(Config config)
 {
     State     = State.Stop;
     _config   = config;
     Simulator = new SimulatorInfo(config);
     Player    = new PlayerInfo(config, Simulator);
 }
Exemplo n.º 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);
 }
Exemplo n.º 3
0
 public PlayerInfo(Config config, SimulatorInfo simulatorInfo)
 {
     _config        = config;
     _simulatorInfo = simulatorInfo;
 }
Exemplo n.º 4
0
 public PlayerInfo(Config config, SimulatorInfo simulatorInfo)
 {
     this._config        = config;
     this._simulatorInfo = simulatorInfo;
 }