Ejemplo n.º 1
0
 public bool LogIn(string login1, System.Guid id, out Core.Data.CPlayer player)
 {
     UI.GameServer.LogInRequest inValue = new UI.GameServer.LogInRequest();
     inValue.login = login1;
     inValue.id    = id;
     UI.GameServer.LogInResponse retVal = ((UI.GameServer.IGameChoiceService)(this)).LogIn(inValue);
     player = retVal.player;
     return(retVal.LogInResult);
 }
Ejemplo n.º 2
0
 public LogInResponse(bool LogInResult, Core.Data.CPlayer player)
 {
     this.LogInResult = LogInResult;
     this.player      = player;
 }