Files
tbd-station-14/Content.Server/Radio/Components/IRadio.cs
2021-06-09 22:19:39 +02:00

15 lines
329 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, IEntity speaker);
void Broadcast(string message, IEntity speaker);
}
}