| 1234567891011121314151617181920212223242526272829 |
- 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;
- }
- }
|