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