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