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; }
#pragma warning disable CS1998 // Async method lacks 'await' operators and will run synchronously public override async Task LookAtCards(RealCardPool cardPool) { }
public abstract Task LookAtCards(RealCardPool cardPool);