Files
tbd-station-14/Content.Server/GameObjects/Components/Movement/TeleportableComponent.cs
metalgearsloth 1f320eccd7 Add basic teleportation and portals (#269)
* Add basic teleportation and portals

* Address PJB's feedback and minor cleanup
2019-07-19 10:09:33 +02:00

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