10 lines
182 B
C#
10 lines
182 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Shared.Observer
|
|
{
|
|
public class SharedGhostComponent : Component
|
|
{
|
|
public override string Name => "Ghost";
|
|
}
|
|
}
|