Files
tbd-station-14/Content.Server/Radio/Components/IRadio.cs
wrexbe 5ceb2372bf Clean up some warnings (#6088)
* Clean up some warnings

* Remove nullable enable

Co-authored-by: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com>

Co-authored-by: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com>
2022-01-09 22:10:36 -06:00

15 lines
343 B
C#

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