Ejemplo n.º 1
0
        public void Update(Controller controller)
        {
            if (Card == null)
                return;

            if (controller.HasClicked(this))
            {
                controller.Player.Play(this.Card);
            }
        }
Ejemplo n.º 2
0
 public void Update(Controller controller)
 {
     if (controller.HasClicked(this))
     {
         controller.Player.BuyCard(TopCard());
     }
 }