using Content.Shared.Speech; using Robust.Shared.Prototypes; namespace Content.Shared._Horizon.Language; [ImplicitDataDefinitionForInheritors] public partial interface ILanguageCondition { ProtoId Language { get; set; } bool RaiseOnListener { get; set; } bool Condition(EntityUid targetEntity, EntityUid? source, IEntityManager entMan); }