2024-01-29 01:02:37 +07:00
|
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
|
2024-06-12 16:00:45 +00:00
|
|
|
|
namespace Content.Shared._White.Cult.Components;
|
2024-01-27 15:19:52 +03:00
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
public sealed partial class ConstructComponent : Component
|
|
|
|
|
|
{
|
2023-11-15 19:15:07 +03:00
|
|
|
|
[DataField("actions")]
|
2024-01-29 01:02:37 +07:00
|
|
|
|
public List<EntProtoId> Actions = new();
|
2024-02-13 01:22:36 +09:00
|
|
|
|
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
public List<EntityUid?> ActionEntities = new();
|
2024-01-27 15:19:52 +03:00
|
|
|
|
}
|