14 lines
375 B
C#
14 lines
375 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared._DV.CosmicCult.Components;
|
|
|
|
/// <summary>
|
|
/// Indicates that an entity will be converted to the given prototype when corrupted by the Cosmic Cult
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class CosmicCorruptibleComponent : Component
|
|
{
|
|
[DataField(required: true)]
|
|
public EntProtoId ConvertTo;
|
|
}
|