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