Files
tbd-station-14/Content.Shared/Administration/Events/PlayerInfoChangedEvent.cs
2022-02-16 18:23:23 +11:00

13 lines
289 B
C#

using System;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization;
namespace Content.Shared.Administration.Events
{
[NetSerializable, Serializable]
public sealed class PlayerInfoChangedEvent : EntityEventArgs
{
public PlayerInfo? PlayerInfo;
}
}