2022-05-13 00:59:03 -07:00
|
|
|
|
using Content.Shared.Eui;
|
2021-01-03 17:20:17 +01:00
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
|
namespace Content.Shared.Cloning
|
2021-01-03 17:20:17 +01:00
|
|
|
|
{
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
|
public enum AcceptCloningUiButton
|
|
|
|
|
|
{
|
|
|
|
|
|
Deny,
|
|
|
|
|
|
Accept,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class AcceptCloningChoiceMessage : EuiMessageBase
|
2021-01-03 17:20:17 +01:00
|
|
|
|
{
|
|
|
|
|
|
public readonly AcceptCloningUiButton Button;
|
|
|
|
|
|
|
|
|
|
|
|
public AcceptCloningChoiceMessage(AcceptCloningUiButton button)
|
|
|
|
|
|
{
|
|
|
|
|
|
Button = button;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|