StationAiHolderComponent.cs 483 B

12345678910111213141516
  1. using Content.Shared.Containers.ItemSlots;
  2. using Robust.Shared.GameStates;
  3. namespace Content.Shared.Silicons.StationAi;
  4. /// <summary>
  5. /// Allows moving a <see cref="StationAiCoreComponent"/> contained entity to and from this component.
  6. /// </summary>
  7. [RegisterComponent, NetworkedComponent]
  8. public sealed partial class StationAiHolderComponent : Component
  9. {
  10. public const string Container = StationAiCoreComponent.Container;
  11. [DataField]
  12. public ItemSlot Slot = new();
  13. }