示例#1
0
 public bool Combat(Card monster, Player player)
 {
     return true;
 }
示例#2
0
 public void Cursed(Card curse, Player player)
 {
     throw new NotImplementedException();
 }
示例#3
0
 public CurrentTurn(Player player)
 {
     this.player = player;
     player.BeginTurn();
     KickDownDoor();
 }