示例#1
0
 public Player(Api.Player player) : base()
 {
     Name      = player.Name;
     Rank      = player.Rank;
     AvatarUrl = player.AvatarUrl;
 }
 public Promise GoToPlayer(Api.Player player)
 {
     return(Next <PlayerController>().ShowPlayer(player.Id));
 }