Files
crystall-punk-14/Content.Shared/Ghost/GhostWarpToTargetRequestMessage.cs

19 lines
422 B
C#
Raw Normal View History

using System;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.Ghost
{
[Serializable, NetSerializable]
public class GhostWarpToTargetRequestMessage : ComponentMessage
{
public EntityUid Target { get; }
public GhostWarpToTargetRequestMessage(EntityUid target)
{
Target = target;
Directed = true;
}
}
}