コード例 #1
0
ファイル: Community.cs プロジェクト: Hyhyx/WoWLegionCompanion
 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);
     }
 }
コード例 #2
0
 public CommunityStream(ulong clubId, ClubStreamInfo streamInfo)
 {
     this.m_clubId     = clubId;
     this.m_streamInfo = streamInfo;
 }