Files
crystall-punk-14/Content.Server/Warps/WarpPointComponent.cs

12 lines
327 B
C#
Raw Normal View History

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