예제 #1
0
        protected void OnMatchOver(DetectedThrow thrw)
        {
            ConvertAndSaveThrow(thrw, ThrowResult.MatchWon);
            Game.Winner = Game.PlayerOnThrow;

            OnMatchEnd?.Invoke();
        }
예제 #2
0
 protected void InvokeEndMatch()
 {
     OnMatchEnd?.Invoke(Game, PlayerOnThrow);
 }