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