Re-organize all projects (#4166)
This commit is contained in:
14
Content.Server/Radio/Components/IRadio.cs
Normal file
14
Content.Server/Radio/Components/IRadio.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user