1
0

STLayStateChangedEvent.cs 262 B

12345678910
  1. using Content.Shared._Stalker.Lay;
  2. using Robust.Shared.Serialization;
  3. namespace Content.Server._Stalker.Lay.Events;
  4. [Serializable]
  5. public sealed class STLayStateChangedEvent(STLayState state) : EntityEventArgs
  6. {
  7. public readonly STLayState State = state;
  8. }