Files
crystall-punk-14/Content.Server/GameObjects/Components/Movement/TeleportableComponent.cs

11 lines
237 B
C#
Raw Normal View History

using Robust.Shared.GameObjects;
namespace Content.Server.GameObjects.Components.Movement
{
2019-07-31 15:02:36 +02:00
[RegisterComponent]
public class TeleportableComponent : Component
{
public override string Name => "Teleportable";
}
}