mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-22 07:58:06 +03:00
13 lines
289 B
C#
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;
|
|
}
|
|
}
|