17 lines
628 B
C#
17 lines
628 B
C#
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List;
|
|
|
|
namespace Content.Shared.Silicons.Laws.Components;
|
|
|
|
/// <summary>
|
|
/// This is used for an entity which grants laws to a <see cref="SiliconLawBoundComponent"/>
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(SharedSiliconLawSystem))]
|
|
public sealed partial class SiliconLawProviderComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The laws that are provided.
|
|
/// </summary>
|
|
[DataField("laws", required: true, customTypeSerializer: typeof(PrototypeIdListSerializer<SiliconLawPrototype>))]
|
|
public List<string> Laws = new();
|
|
}
|