mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-19 06:28:40 +03:00
10 lines
231 B
C#
10 lines
231 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared._Goobstation.Actions;
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class LoadActionsEvent(NetEntity entity) : EntityEventArgs
|
|
{
|
|
public NetEntity Entity = entity;
|
|
}
|