Files
tbd-station-14/Content.Shared/Ghost/ReturnToBodyEuiMessage.cs
Nemanja 0604c93d50 Defibrillator (#15922)
Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
2023-05-03 10:10:19 +10:00

16 lines
314 B
C#

using Content.Shared.Eui;
using Robust.Shared.Serialization;
namespace Content.Shared.Ghost;
[Serializable, NetSerializable]
public sealed class ReturnToBodyMessage : EuiMessageBase
{
public readonly bool Accepted;
public ReturnToBodyMessage(bool accepted)
{
Accepted = accepted;
}
}