Files
tbd-station-14/Content.Server/Warps/WarpPointComponent.cs
2023-10-16 16:39:39 +11:00

19 lines
491 B
C#

namespace Content.Server.Warps
{
/// <summary>
/// Allows ghosts etc to warp to this entity by name.
/// </summary>
[RegisterComponent]
public sealed partial class WarpPointComponent : Component
{
[ViewVariables(VVAccess.ReadWrite), DataField]
public string? Location;
/// <summary>
/// If true, ghosts warping to this entity will begin following it.
/// </summary>
[DataField]
public bool Follow;
}
}