Files
wwdpublic/Content.Server/RequiresGrid/RequiresGridComponent.cs
HoofedEar e96254fb4c Add RequiresGrid component (#23394)
* saving working code

* add checks for deletion

(cherry picked from commit 487dd113b05aa54a8683f6be980a60f3e431d226)
2024-03-05 09:48:10 +01:00

12 lines
258 B
C#

namespace Content.Server.RequiresGrid;
/// <summary>
/// Destroys an entity when they no longer are part of a Grid
/// </summary>
[RegisterComponent]
[Access(typeof(RequiresGridSystem))]
public sealed partial class RequiresGridComponent : Component
{
}