12 lines
353 B
C#
12 lines
353 B
C#
using Content.Shared.StatusEffect;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Speech.EntitySystems;
|
|
|
|
public abstract class SharedSlurredSystem : EntitySystem
|
|
{
|
|
public static readonly EntProtoId Stutter = "StatusEffectSlurred";
|
|
|
|
public virtual void DoSlur(EntityUid uid, TimeSpan time, StatusEffectsComponent? status = null) { }
|
|
}
|