2021-02-27 04:12:09 +01:00
|
|
|
|
#nullable enable
|
|
|
|
|
|
using System;
|
2021-01-03 17:20:17 +01:00
|
|
|
|
using Content.Shared.Eui;
|
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.GameObjects.Components.Observer
|
|
|
|
|
|
{
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
|
public enum AcceptCloningUiButton
|
|
|
|
|
|
{
|
|
|
|
|
|
Deny,
|
|
|
|
|
|
Accept,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
|
public class AcceptCloningChoiceMessage : EuiMessageBase
|
|
|
|
|
|
{
|
|
|
|
|
|
public readonly AcceptCloningUiButton Button;
|
|
|
|
|
|
|
|
|
|
|
|
public AcceptCloningChoiceMessage(AcceptCloningUiButton button)
|
|
|
|
|
|
{
|
|
|
|
|
|
Button = button;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|