public EndGameCocurrentEventArgs(bool isWin, CocurrentRoutineHandler cocurrentRoutine)
 {
     IsWin            = isWin;
     CocurrentRoutine = cocurrentRoutine;
 }
 public WinCoccurentEventArgs(int rightAnswersCount, CocurrentRoutineHandler cocurrentRoutine)
 {
     RightAnswersCount = rightAnswersCount;
     CocurrentRoutine  = cocurrentRoutine;
 }
Beispiel #3
0
 public AnswerPickedCoccurentEventArgs(bool isRight, CocurrentRoutineHandler cocurrentRoutineHandler)
 {
     IsRight = isRight;
     CocurrentRoutineHandler = cocurrentRoutineHandler;
 }