Files
tbd-station-14/Content.Server/GameObjects/Components/Movement/TeleportableComponent.cs
2019-07-31 15:07:54 +02:00

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";
}
}