Files
tbd-station-14/Content.Server/Radio/Components/IRadio.cs
2021-12-05 18:09:01 +01:00

14 lines
298 B
C#

using System.Collections.Generic;
namespace Content.Server.Radio.Components
{
public interface IRadio
{
IReadOnlyList<int> Channels { get; }
void Receive(string message, int channel, EntityUidspeaker);
void Broadcast(string message, EntityUidspeaker);
}
}