コード例 #1
0
ファイル: PlayScript.cs プロジェクト: anamarce/triviaCatracha
    public int GetCurrentConsecutiveAnswers()
    {
        int cant = -1;

        if (mMatch != null)
        {
            if (mMatchData != null)
            {
                cant = mMatchData.GetCurrentConsecutivesAnswers(mMatch.SelfParticipantId);
            }
        }
        return(cant);
    }