2022-05-13 00:59:03 -07:00
|
|
|
|
using Robust.Shared.Serialization;
|
2021-11-10 13:26:25 +01:00
|
|
|
|
|
2024-08-15 20:26:57 +02:00
|
|
|
|
namespace Content.Shared.Administration.Events;
|
|
|
|
|
|
|
|
|
|
|
|
[NetSerializable, Serializable]
|
|
|
|
|
|
public sealed class PlayerInfoChangedEvent : EntityEventArgs
|
2021-11-10 13:26:25 +01:00
|
|
|
|
{
|
2024-08-15 20:26:57 +02:00
|
|
|
|
public PlayerInfo? PlayerInfo;
|
2021-11-10 13:26:25 +01:00
|
|
|
|
}
|