6
StarHorizon_Public/Content.Shared/Silicons/Laws/SiliconLawEditEuiState.cs
2026-01-24 12:49:55 +03:00

30 lines
716 B
C#

using Content.Shared.Eui;
using Robust.Shared.Serialization;
namespace Content.Shared.Silicons.Laws;
[Serializable, NetSerializable]
public sealed class SiliconLawsEuiState : EuiStateBase
{
public List<SiliconLaw> Laws { get; }
public NetEntity Target { get; }
public SiliconLawsEuiState(List<SiliconLaw> laws, NetEntity target)
{
Laws = laws;
Target = target;
}
}
[Serializable, NetSerializable]
public sealed class SiliconLawsSaveMessage : EuiMessageBase
{
public List<SiliconLaw> Laws { get; }
public NetEntity Target { get; }
public SiliconLawsSaveMessage(List<SiliconLaw> laws, NetEntity target)
{
Laws = laws;
Target = target;
}
}