mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
* saving working code * add checks for deletion (cherry picked from commit 487dd113b05aa54a8683f6be980a60f3e431d226)
12 lines
258 B
C#
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
|
|
{
|
|
|
|
}
|