Re-organize all projects (#4166)
This commit is contained in:
19
Content.Shared/Ghost/GhostWarpToLocationRequestMessage.cs
Normal file
19
Content.Shared/Ghost/GhostWarpToLocationRequestMessage.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
#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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user