public void Update(Controller controller) { if (Card == null) return; if (controller.HasClicked(this)) { controller.Player.Play(this.Card); } }
public void Update(Controller controller) { if (controller.HasClicked(this)) { controller.Player.BuyCard(TopCard()); } }