* Separate ghost warp message into two * Remove redundant arguments * Address reviews * Move properties up
19 lines
448 B
C#
19 lines
448 B
C#
using System;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.GameObjects.Components.Observer
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public class GhostWarpToTargetRequestMessage : ComponentMessage
|
|
{
|
|
public EntityUid Target { get; }
|
|
|
|
public GhostWarpToTargetRequestMessage(EntityUid target)
|
|
{
|
|
Target = target;
|
|
Directed = true;
|
|
}
|
|
}
|
|
}
|