public QuestionResult(Question question, string typedKey, double correctRatio, int wpm) { Question = question; TypedKey = typedKey; Accuracy = correctRatio; Wpm = wpm; }
public void SetNextQuestion(Question q) { if (QCurrent != null) { AddToResult(); } Initialize(); QCurrent = q; }