Exemple #1
0
 public static int TimesAnswerSelected(this ChaControl chaControl, int question, int answer)
 {
     return(chaControl?.GetGameDialogHelperController()?.TimesAnswerSelected(question, answer) ?? 0);
 }
Exemple #2
0
 public static int TimesQuestionAnswered(this ChaControl chaControl, int question)
 {
     return(chaControl?.GetGameDialogHelperController()?.TimesQuestionAnswered(question) ?? 0);
 }
Exemple #3
0
 public static bool CanRecallQuestion(this ChaControl chaControl, int question)
 {
     return(chaControl?.GetGameDialogHelperController()?.CanRecallQuestion(question) ?? false);
 }
Exemple #4
0
 public static bool CanRecallAnswer(this ChaControl chaControl, int question, int answer)
 {
     return(chaControl?.GetGameDialogHelperController()?.CanRecallAnswer(question, answer) ?? false);
 }
Exemple #5
0
 public static void Remember(this ChaControl chaControl, int question, int answer)
 {
     chaControl?.GetGameDialogHelperController()?.Remember(question, answer);
 }