예제 #1
0
    public void ResponseShowRoom(ResponseShowRoom response)
    {
        // 情報保持
        UserInfo.game_id = response.game_id;

        if (response.status == "playing" && !m_flgMatched)
        {
            GetGameInfo();
        }
    }
예제 #2
0
 // roominfo res
 public void ResponseShowRoom(ResponseShowRoom response)
 {
     PlayerSession.game_id = response.game_id;
     is_matching           = response.status == "waiting";
     return;
 }