15 lines
374 B
C#
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);
|
|
}
|