9 lines
257 B
C#
9 lines
257 B
C#
namespace Content.Server.StationEvents.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class LinkedLifecycleGridParentComponent : Component
|
|
{
|
|
// The entity this grid's lifecycle is tied to.
|
|
public HashSet<EntityUid> LinkedEntities = new();
|
|
}
|