Пример #1
0
	private void OnRematchResult(string data) {
		GK_TBM_Match match = ParceMatchInfo(data);
		UpdateMatchInfo(match);
		
		GK_TBM_RematchResult result = new GK_TBM_RematchResult(match);
		ActionRematched(result);
	}
Пример #2
0
    void HandleActionRematched(GK_TBM_RematchResult res)
    {
        UM_TBM_MatchResult result = new UM_TBM_MatchResult(res);

        if (res.Match != null)
        {
            UM_TBM_Match match = new UM_TBM_Match(res.Match);
            result.SetMatch(match);

            UpdateMatchData(match);
        }


        MatchFoundEvent(result);
    }
Пример #3
0
    private void OnRematchFailed(string errorData)
    {
        GK_TBM_RematchResult result = new GK_TBM_RematchResult(errorData);

        ActionRematched(result);
    }