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
|
|
{
|
|
|
|
}
|