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