Files
tbd-station-14/Content.Shared/Teleportation/TeleportLocationsUi.cs

20 lines
511 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Teleportation;
[Serializable, NetSerializable]
public enum TeleportLocationUiKey : byte
{
Key
}
/// <summary>
/// Sends message to request that the clicker teleports to the requested location
/// </summary>
[Serializable, NetSerializable]
public sealed class TeleportLocationDestinationMessage(NetEntity netEnt, string pointName) : BoundUserInterfaceMessage
{
public NetEntity NetEnt = netEnt;
public string PointName = pointName;
}