Re-organize all projects (#4166)
This commit is contained in:
18
Content.Shared/Ghost/GhostWarpToTargetRequestMessage.cs
Normal file
18
Content.Shared/Ghost/GhostWarpToTargetRequestMessage.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.Ghost
|
||||
{
|
||||
[Serializable, NetSerializable]
|
||||
public class GhostWarpToTargetRequestMessage : ComponentMessage
|
||||
{
|
||||
public EntityUid Target { get; }
|
||||
|
||||
public GhostWarpToTargetRequestMessage(EntityUid target)
|
||||
{
|
||||
Target = target;
|
||||
Directed = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user