mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
16 lines
314 B
C#
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;
|
|
}
|
|
}
|