15 lines
337 B
C#
15 lines
337 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared._CP14.Knowledge.Events;
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class CP14RequestKnowledgeInfoEvent : EntityEventArgs
|
|
{
|
|
public readonly NetEntity NetEntity;
|
|
|
|
public CP14RequestKnowledgeInfoEvent(NetEntity netEntity)
|
|
{
|
|
NetEntity = netEntity;
|
|
}
|
|
}
|