Files
tbd-station-14/Content.Server/Radio/Components/IRadio.cs
DrSmugleaf ab9d0cc6d8 Fix errors
2021-12-05 21:02:04 +01:00

15 lines
333 B
C#

using System.Collections.Generic;
using Robust.Shared.GameObjects;
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);
}
}