Beispiel #1
0
 public GamerEntity(string id, IBotProxy bot)
 {
     _devicedId      = id;
     input           = new GamerInput();
     mPlayerNameList = new Dictionary <int, string>();
     botProxy        = bot;
 }
Beispiel #2
0
 public GamerEntity(string id)
 {
     _devicedId      = id;
     input           = new GamerInput();
     mPlayerNameList = new Dictionary <int, string>();
     botProxy        = new ConsoleBotProxy();
 }