mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 22:18:52 +03:00
* namespaces * Comment does not need a semicolon --------- Co-authored-by: Vasilis <vascreeper@yahoo.com> (cherry picked from commit 40b9fd4ea3b1e06558d8e510c527169965193ccc)
10 lines
220 B
C#
10 lines
220 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Administration.Events;
|
|
|
|
[NetSerializable, Serializable]
|
|
public sealed class PlayerInfoChangedEvent : EntityEventArgs
|
|
{
|
|
public PlayerInfo? PlayerInfo;
|
|
}
|