Co-authored-by: Paul <ritter.paul1+git@googlemail.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
13 lines
282 B
C#
13 lines
282 B
C#
using System;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Administration.Events
|
|
{
|
|
[NetSerializable, Serializable]
|
|
public class PlayerInfoChangedEvent : EntityEventArgs
|
|
{
|
|
public PlayerInfo? PlayerInfo;
|
|
}
|
|
}
|