Files
tbd-station-14/Content.Shared/Administration/Events/PlayerInfoChangedEvent.cs
Errant 40b9fd4ea3 Namespace cleanup around Mind Roles (#30965)
* namespaces

* Comment does not need a semicolon

---------

Co-authored-by: Vasilis <vascreeper@yahoo.com>
2024-08-15 20:26:57 +02:00

10 lines
220 B
C#

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