mirror of
https://github.com/corvax-team/ss14-wl.git
synced 2026-02-14 19:29:57 +01:00
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
|
|
{
|
|
|
|
}
|