FullPlayerListEvent.cs 250 B

12345678910
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Administration.Events
  3. {
  4. [Serializable, NetSerializable]
  5. public sealed class FullPlayerListEvent : EntityEventArgs
  6. {
  7. public List<PlayerInfo> PlayersInfo = new();
  8. }
  9. }