Files
tbd-station-14/Content.Server/Radio/Components/IRadio.cs
2021-12-15 17:42:56 +11:00

16 lines
376 B
C#

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