using System.Collections.Generic; using Robust.Shared.GameObjects; namespace Content.Server.Interfaces { public interface IRadio { IReadOnlyList Channels { get; } void Receive(string message, int channel, IEntity speaker); void Broadcast(string message, IEntity speaker); } }