EntityTablePrototype.cs 437 B

123456789101112131415161718
  1. using Content.Shared.EntityTable.EntitySelectors;
  2. using Robust.Shared.Prototypes;
  3. namespace Content.Shared.EntityTable;
  4. /// <summary>
  5. /// This is a prototype for...
  6. /// </summary>
  7. [Prototype]
  8. public sealed partial class EntityTablePrototype : IPrototype
  9. {
  10. /// <inheritdoc/>
  11. [IdDataField]
  12. public string ID { get; private set; } = default!;
  13. [DataField(required: true)]
  14. public EntityTableSelector Table = default!;
  15. }