2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Server.Warps
|
2020-05-24 14:31:57 +02:00
|
|
|
{
|
2022-02-01 17:15:58 +11:00
|
|
|
/// <summary>
|
|
|
|
|
/// Allows ghosts etc to warp to this entity by name.
|
|
|
|
|
/// </summary>
|
2022-02-08 00:42:49 -08:00
|
|
|
[RegisterComponent]
|
2022-02-01 17:15:58 +11:00
|
|
|
public sealed class WarpPointComponent : Component
|
2020-05-24 14:31:57 +02:00
|
|
|
{
|
2021-03-16 15:50:20 +01:00
|
|
|
[ViewVariables(VVAccess.ReadWrite)] [DataField("location")] public string? Location { get; set; }
|
2020-05-24 14:31:57 +02:00
|
|
|
}
|
|
|
|
|
}
|