EntityRemapComponent.cs 355 B

12345678910111213
  1. using Robust.Shared.Prototypes;
  2. namespace Content.Shared.Procedural.Components;
  3. /// <summary>
  4. /// Indicates this entity prototype should be re-mapped to another
  5. /// </summary>
  6. [RegisterComponent]
  7. public sealed partial class EntityRemapComponent : Component
  8. {
  9. [DataField(required: true)]
  10. public Dictionary<EntProtoId, EntProtoId> Mask = new();
  11. }