Files
tbd-station-14/Content.Server/Radio/Components/IRadio.cs
2021-12-20 13:58:30 +01:00

15 lines
343 B
C#

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