Files
ss14-wega/Content.Shared/_Wega/Genetics/Components/Basic/HulkGenComponent.cs
Zekins 603098e292 Чистка сборки (#237)
* buildcleanup

* resourcescleanup

* fixlinter

* fixlinter2

* final
2025-11-03 23:52:18 +03:00

30 lines
749 B
C#

using Content.Shared.Polymorph;
using Robust.Shared.Prototypes;
namespace Content.Shared.Genetics;
[RegisterComponent]
public sealed partial class HulkComponent : Component
{
public readonly EntProtoId[] ActionPrototypes = new EntProtoId[]
{
"ActionHulkCharge"
};
public List<EntityUid?> ActionsEntity { get; set; } = new();
}
[RegisterComponent]
public sealed partial class HulkGenComponent : Component
{
public readonly EntProtoId ActionPrototype = "ActionHulkTransformation";
public EntityUid? ActionEntity { get; set; }
[DataField]
public ProtoId<PolymorphPrototype> PolymorphProto = "HulkPolymorph";
[DataField]
public ProtoId<PolymorphPrototype> PolymorphAltProto = "HulkPolymorphAlt";
}