mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-22 16:17:00 +03:00
12 lines
275 B
C#
12 lines
275 B
C#
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);
|
|
}
|
|
}
|