BattleShip.Core.GameHost.GetNextPlayerEmail C# (CSharp) 메소드

GetNextPlayerEmail() 공개 메소드

public GetNextPlayerEmail ( System.Guid gameId ) : string
gameId System.Guid
리턴 string
        public string GetNextPlayerEmail(Guid gameId)
        {
            Game game = FindGame(gameId);

            return game.NextPlayerToTakeShot.Email;
        }