Пример #1
0
        internal void ShowCard(GameProcessPage gameProcessPage)
        {
            HideCard(gameProcessPage);
            var BotsChoice = CurrentBot.BotsChoice(UserPlayedCards);

            ChooseAttribute(gameProcessPage, BotsChoice, false);
        }
Пример #2
0
 public static void Stop()
 {
     if (CurrentBot == null)
     {
         return;
     }
     CurrentBot.Stop();
 }
Пример #3
0
 public static bool Start()
 {
     if (CurrentBot == null)
     {
         return(false);
     }
     return(CurrentBot.Start());
 }