Esempio n. 1
0
 private void AddStream(ClubStreamInfo info)
 {
     if (!this.m_streamList.ContainsKey(info.streamId))
     {
         CommunityStream communityStream = new CommunityStream(this.ClubId, info);
         this.m_streamList.Add(communityStream.StreamId, communityStream);
     }
 }
Esempio n. 2
0
 public CommunityStream(ulong clubId, ClubStreamInfo streamInfo)
 {
     this.m_clubId     = clubId;
     this.m_streamInfo = streamInfo;
 }