Files
OldThink/Content.Shared/_White/GhostRecruitment/GhostRecruitmentEuiAccept.cs

26 lines
546 B
C#
Raw Permalink Normal View History

using Content.Shared.Eui;
using Robust.Shared.Serialization;
namespace Content.Shared._White.GhostRecruitment
{
[Serializable, NetSerializable]
public enum AcceptRecruitmentUiButton
{
Deny,
Accept,
}
[Serializable, NetSerializable]
public sealed class AcceptRecruitmentChoiceMessage : EuiMessageBase
{
public readonly AcceptRecruitmentUiButton Button;
public AcceptRecruitmentChoiceMessage(AcceptRecruitmentUiButton button)
{
Button = button;
}
}
}