2021-10-05 14:29:03 +11:00
|
|
|
using System;
|
2021-01-23 16:45:20 +01:00
|
|
|
using Content.Shared.Chemistry;
|
2021-06-09 22:19:39 +02:00
|
|
|
using Content.Shared.Chemistry.Reagent;
|
2021-01-23 16:45:20 +01:00
|
|
|
using Content.Shared.Eui;
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Administration
|
|
|
|
|
{
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public sealed class AdminAddReagentEuiState : EuiStateBase
|
|
|
|
|
{
|
|
|
|
|
public ReagentUnit MaxVolume;
|
|
|
|
|
public ReagentUnit CurVolume;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static class AdminAddReagentEuiMsg
|
|
|
|
|
{
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public sealed class Close : EuiMessageBase
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public sealed class DoAdd : EuiMessageBase
|
|
|
|
|
{
|
|
|
|
|
public bool CloseAfter;
|
|
|
|
|
public ReagentUnit Amount;
|
2021-02-27 04:12:09 +01:00
|
|
|
public string ReagentId = string.Empty;
|
2021-01-23 16:45:20 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|