Files
tbd-station-14/Content.Shared/Administration/AdminAddReagentEuiState.cs
2021-06-09 22:19:39 +02:00

34 lines
809 B
C#

#nullable enable
using System;
using Content.Shared.Chemistry;
using Content.Shared.Chemistry.Reagent;
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;
public string ReagentId = string.Empty;
}
}
}