public void addStream(TwitchStream stream, long entityID)
 {
     if (!entities.Contains(entity))
     {
         throw new EntityNotFoundException();
     }
     else
     {
         DiscordEntity entity = entities[entities.IndexOf(entity)];
     }
 }
Example #2
0
 public void removeStream(TwitchStream stream)
 {
     subscribedStreams.Remove(stream);
 }
Example #3
0
 public void addStream(TwitchStream stream)
 {
     subscribedStreams.Add(stream);
 }
 public void removeStream(TwitchStream stream, DiscordEntity entity)
 {
 }