2021-11-10 13:26:25 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Administration.Events
|
|
|
|
|
|
{
|
|
|
|
|
|
[NetSerializable, Serializable]
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class PlayerInfoChangedEvent : EntityEventArgs
|
2021-11-10 13:26:25 +01:00
|
|
|
|
{
|
|
|
|
|
|
public PlayerInfo? PlayerInfo;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|