Files
tbd-station-14/Content.Server/Warps/WarpPointComponent.cs
2022-05-13 17:59:03 +10:00

12 lines
327 B
C#

namespace Content.Server.Warps
{
/// <summary>
/// Allows ghosts etc to warp to this entity by name.
/// </summary>
[RegisterComponent]
public sealed class WarpPointComponent : Component
{
[ViewVariables(VVAccess.ReadWrite)] [DataField("location")] public string? Location { get; set; }
}
}