Example #1
0
 private void AddCommunity(ClubInfo community)
 {
     if (!CommunityData.m_communityDictionary.ContainsKey(community.clubId))
     {
         Community community2 = new Community(community);
         CommunityData.m_communityDictionary.Add(community2.ClubId, community2);
         community2.RefreshStreams();
     }
 }