17 lines
367 B
C#
17 lines
367 B
C#
using Robust.Shared.Interfaces.GameObjects;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Content.Server.Interfaces
|
|
{
|
|
public interface IRadio
|
|
{
|
|
IReadOnlyList<int> Channels { get; }
|
|
|
|
void Receive(string message, int channel, IEntity speaker);
|
|
|
|
void Broadcast(string message, IEntity speaker);
|
|
}
|
|
}
|