6
2026-01-24 12:49:55 +03: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);
}