2025-08-18 13:26:29 -07:00
|
|
|
using Content.Shared.StatusEffectNew;
|
2025-07-07 15:57:05 -04:00
|
|
|
using Robust.Shared.Prototypes;
|
2021-10-17 01:23:31 +02:00
|
|
|
|
2023-05-05 21:46:52 +08:00
|
|
|
namespace Content.Shared.Speech.EntitySystems;
|
|
|
|
|
|
|
|
|
|
public abstract class SharedStutteringSystem : EntitySystem
|
2021-10-17 01:23:31 +02:00
|
|
|
{
|
2025-08-18 13:26:29 -07:00
|
|
|
public static readonly EntProtoId Stuttering = "StatusEffectStutter";
|
2023-05-05 21:46:52 +08:00
|
|
|
|
2025-08-18 13:26:29 -07:00
|
|
|
[Dependency] protected readonly StatusEffectsSystem Status = default!;
|
2023-05-05 21:46:52 +08:00
|
|
|
|
|
|
|
|
// For code in shared... I imagine we ain't getting accent prediction anytime soon so let's not bother.
|
2025-08-18 13:26:29 -07:00
|
|
|
public virtual void DoStutter(EntityUid uid, TimeSpan time, bool refresh)
|
2023-05-05 21:46:52 +08:00
|
|
|
{
|
|
|
|
|
}
|
2023-08-13 20:26:59 -04:00
|
|
|
|
2025-08-18 13:26:29 -07:00
|
|
|
public virtual void DoRemoveStutterTime(EntityUid uid, TimeSpan timeRemoved)
|
2023-05-05 21:46:52 +08:00
|
|
|
{
|
|
|
|
|
}
|
2023-08-13 20:26:59 -04:00
|
|
|
|
2025-08-18 13:26:29 -07:00
|
|
|
public virtual void DoRemoveStutter(EntityUid uid)
|
2021-10-17 01:23:31 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|