Ejemplo n.º 1
0
        async Task <UserChoice> IShowInstructionsAndHistoryController.ShowAndWait(string message)
        {
            await ShowInstructionsUi.WaitForContinue(message);


            //UserChoice choice = UserChoice.Continue;
            //PromptUserDlg dlg = new PromptUserDlg();
            //choice = await dlg.ShowAndWait(message);
            return(UserChoice.Continue);
        }
Ejemplo n.º 2
0
 void IShowInstructionsAndHistoryController.ResetScoreHistory()
 {
     ShowInstructionsUi.ResetScoreHistory();
 }
Ejemplo n.º 3
0
 Task IShowInstructionsAndHistoryController.InsertEndOfHandSummary(PlayerType dealer, int cribScore, List <CardView> list, int nComputerCountingPoint, int nPlayerCountingPoint, int ComputerPointsThisTurn, int PlayerPointsThisTurn, HandsFromServer Hfs)
 {
     return(ShowInstructionsUi.InsertEndOfHandSummary(dealer, cribScore, list, nComputerCountingPoint, nPlayerCountingPoint, ComputerPointsThisTurn, PlayerPointsThisTurn, Hfs));
 }
Ejemplo n.º 4
0
 Task IShowInstructionsAndHistoryController.Show(bool show, bool closeWithTimer, string message)
 {
     return(ShowInstructionsUi.Show(show, closeWithTimer, message));
 }
Ejemplo n.º 5
0
 void IShowInstructionsAndHistoryController.InsertScoreSummary(ScoreType scoreType, int playerScore, int computerScore)
 {
     ShowInstructionsUi.InsertScoreSummary(scoreType, playerScore, computerScore);
 }
Ejemplo n.º 6
0
 void IShowInstructionsAndHistoryController.ShowAsync(bool show, bool closeWithTimer, string message)
 {
     ShowInstructionsUi.ShowAsync(show, closeWithTimer, message);
 }
Ejemplo n.º 7
0
 void IShowInstructionsAndHistoryController.SetMessage(string message)
 {
     ShowInstructionsUi.SetMessage(message);
 }