11 lines
237 B
C#
11 lines
237 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.GameObjects.Components.Movement
|
|
{
|
|
[RegisterComponent]
|
|
public class TeleportableComponent : Component
|
|
{
|
|
public override string Name => "Teleportable";
|
|
}
|
|
}
|