6
2026-01-13 18:31:02 +02:00

15 lines
374 B
C#

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