6
StarHorizon_Public/Content.Shared/Silicons/StationAi/StationAiHolderComponent.cs
2026-01-24 12:49:55 +03:00

17 lines
483 B
C#

using Content.Shared.Containers.ItemSlots;
using Robust.Shared.GameStates;
namespace Content.Shared.Silicons.StationAi;
/// <summary>
/// Allows moving a <see cref="StationAiCoreComponent"/> contained entity to and from this component.
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed partial class StationAiHolderComponent : Component
{
public const string Container = StationAiCoreComponent.Container;
[DataField]
public ItemSlot Slot = new();
}