Files
tbd-station-14/Content.Server/Radio/Components/IRadio.cs
2021-12-05 10:56:17 -08:00

15 lines
330 B
C#

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