2022-06-23 16:33:25 +12:00
|
|
|
using Content.Shared.StatusEffect;
|
2025-08-18 13:26:29 -07:00
|
|
|
using Robust.Shared.Prototypes;
|
2022-06-23 16:33:25 +12:00
|
|
|
|
|
|
|
|
namespace Content.Shared.Speech.EntitySystems;
|
|
|
|
|
|
|
|
|
|
public abstract class SharedSlurredSystem : EntitySystem
|
|
|
|
|
{
|
2025-08-18 13:26:29 -07:00
|
|
|
public static readonly EntProtoId Stutter = "StatusEffectSlurred";
|
|
|
|
|
|
2022-06-23 16:33:25 +12:00
|
|
|
public virtual void DoSlur(EntityUid uid, TimeSpan time, StatusEffectsComponent? status = null) { }
|
|
|
|
|
}
|