LocalTeleportComponent.cs 462 B

1234567891011121314
  1. namespace Content.Server._Stalker.Teleports.LocalTeleport;
  2. /// <summary>
  3. /// Contains portal name for <see cref="LocalTeleportSystem"/>
  4. /// </summary>
  5. [RegisterComponent]
  6. public sealed partial class LocalTeleportComponent : Component
  7. {
  8. // Portal name to link two portals with the same name together
  9. [DataField("portalName"), ViewVariables(VVAccess.ReadWrite)]
  10. public string? PortalName = string.Empty;
  11. [DataField]
  12. public bool AllowAll;
  13. }