Server.Lobby.getbyId C# (CSharp) 메소드

getbyId() 공개 메소드

public getbyId ( Int32 id ) : ServerClient
id Int32
리턴 ServerClient
        public ServerClient getbyId(Int32 id)
        {
            return clients.Find(x => x.id == id);
        }