public static int TimesAnswerSelected(this ChaControl chaControl, int question, int answer) { return(chaControl?.GetGameDialogHelperController()?.TimesAnswerSelected(question, answer) ?? 0); }
public static int TimesQuestionAnswered(this ChaControl chaControl, int question) { return(chaControl?.GetGameDialogHelperController()?.TimesQuestionAnswered(question) ?? 0); }
public static bool CanRecallQuestion(this ChaControl chaControl, int question) { return(chaControl?.GetGameDialogHelperController()?.CanRecallQuestion(question) ?? false); }
public static bool CanRecallAnswer(this ChaControl chaControl, int question, int answer) { return(chaControl?.GetGameDialogHelperController()?.CanRecallAnswer(question, answer) ?? false); }
public static void Remember(this ChaControl chaControl, int question, int answer) { chaControl?.GetGameDialogHelperController()?.Remember(question, answer); }