Esempio n. 1
0
 public void BackLesson()
 {
     if (Chapter > 0)
     {
         Chapter--;
         LearningState.SetLesson(Chapter);
     }
 }
Esempio n. 2
0
 public void NextLesson()
 {
     if (Chapter < LearningState.Learning.maxLesson)
     {
         Chapter++;
         LearningState.SetLesson(Chapter);
     }
 }