10 lines
245 B
C#
10 lines
245 B
C#
|
|
using Robust.Shared.GameObjects;
|
||
|
|
|
||
|
|
namespace Content.Shared.Singularity.Components
|
||
|
|
{
|
||
|
|
public abstract class SharedContainmentFieldGeneratorComponent : Component
|
||
|
|
{
|
||
|
|
public override string Name => "ContainmentFieldGenerator";
|
||
|
|
}
|
||
|
|
}
|