コード例 #1
0
        public override async Task LookAtCards(RealCardPool cardPool)
        {
            cardsToDraw        = cardPool.cards.ConvertAll(v => v.image);
            CurrentAlertScreen = AlertScreen.ViewCards;
            await Task.Delay(2000);

            CurrentAlertScreen = null;
            cardsToDraw        = null;
        }
コード例 #2
0
ファイル: AIPlayer.cs プロジェクト: michaelcheers/HandGames
#pragma warning disable CS1998 // Async method lacks 'await' operators and will run synchronously
        public override async Task LookAtCards(RealCardPool cardPool)
        {
        }
コード例 #3
0
ファイル: Player.cs プロジェクト: michaelcheers/HandGames
 public abstract Task LookAtCards(RealCardPool cardPool);