mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
11 lines
289 B
C#
11 lines
289 B
C#
using Content.Shared.StatusEffect;
|
|
|
|
namespace Content.Shared.Speech.EntitySystems;
|
|
|
|
public abstract class SharedRatvarianLanguageSystem : EntitySystem
|
|
{
|
|
public virtual void DoRatvarian(EntityUid uid, TimeSpan time, bool refresh, StatusEffectsComponent? status = null)
|
|
{
|
|
}
|
|
}
|