internal void FinishChapter() { ChapterOver.ChapterCompleted(); if (ChapterFinished != null) { ChapterFinished(); } }
private static bool HasPlayerFailed() { if (Player.Current.LivesLeft > 0) { return(false); } ChapterOver.ChaptedFailed(); return(true); }