Defibrillator (#15922)
Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
This commit is contained in:
15
Content.Shared/Ghost/ReturnToBodyEuiMessage.cs
Normal file
15
Content.Shared/Ghost/ReturnToBodyEuiMessage.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user