DrowsinessSystem.cs 241 B

123456789
  1. using Content.Shared.StatusEffect;
  2. namespace Content.Shared.Drowsiness;
  3. public abstract class SharedDrowsinessSystem : EntitySystem
  4. {
  5. [ValidatePrototypeId<StatusEffectPrototype>]
  6. public const string DrowsinessKey = "Drowsiness";
  7. }