20 lines
429 B
C#
20 lines
429 B
C#
#nullable enable
|
|
using System;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Ghost
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public class GhostWarpToLocationRequestMessage : ComponentMessage
|
|
{
|
|
public string Name { get; }
|
|
|
|
public GhostWarpToLocationRequestMessage(string name)
|
|
{
|
|
Name = name;
|
|
Directed = true;
|
|
}
|
|
}
|
|
}
|