14 lines
355 B
C#
14 lines
355 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Procedural.Components;
|
|
|
|
/// <summary>
|
|
/// Indicates this entity prototype should be re-mapped to another
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class EntityRemapComponent : Component
|
|
{
|
|
[DataField(required: true)]
|
|
public Dictionary<EntProtoId, EntProtoId> Mask = new();
|
|
}
|