Files
tbd-station-14/Content.Server/GameObjects/Components/Portal/TeleportableComponent.cs

11 lines
235 B
C#

using Robust.Shared.GameObjects;
namespace Content.Server.GameObjects.Components.Portal
{
[RegisterComponent]
public class TeleportableComponent : Component
{
public override string Name => "Teleportable";
}
}