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