14 lines
310 B
C#
14 lines
310 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared._DV.CosmicCult;
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed partial class CosmicSiphonIndicatorEvent(NetEntity target) : EntityEventArgs
|
|
{
|
|
public NetEntity Target = target;
|
|
|
|
public CosmicSiphonIndicatorEvent() : this(new())
|
|
{
|
|
}
|
|
}
|