Files
tbd-station-14/Content.Server/Interfaces/IListen.cs
DrSmugleaf 4a8ed41e3a Fix namespaces and optimize imports (#1651)
* Fix namespaces and optimize imports

* Cleanup fixes

* Merge conflict fixes

* Merge conflict fixes

* Merge conflict fixes
2020-08-13 14:40:27 +02:00

15 lines
349 B
C#

using Robust.Shared.Interfaces.GameObjects;
namespace Content.Server.Interfaces
{
/// <summary>
/// Interface for objects such as radios meant to have an effect when speech is heard.
/// </summary>
public interface IListen
{
void HeardSpeech(string speech, IEntity source);
int GetListenRange();
}
}