Ejemplo n.º 1
0
 /* Visual Recognition Manager handlers */
 public void PlayerHandRecognized(CardList playerCards)
 {
     Globals.Director.RunFromGUIThread((Action) delegate()
     {
         if (DisplayWindow != null)
         {
             DisplayWindow.DisplayPlayerHand(playerCards);
         }
     }, true);
 }
Ejemplo n.º 2
0
 /* Visual Recognition Manager handlers */
 public void PlayerHandRecognized(CardList playerCards)
 {
     Globals.Director.RunFromGUIThread((Action) delegate()
     {
         Globals.Director.WriteDebug(WRITE_DEBUG, "\n\t ~~~ PlayerHandRecognized " + playerCards.ToString());
         if (DisplayWindow != null)
         {
             DisplayWindow.DisplayPlayerHand(playerCards);
         }
     }, true);
     //TODO - update the state of the Table
 }