1
0

ActionContainerComponent.cs 510 B

1234567891011121314151617
  1. using Robust.Shared.Containers;
  2. using Robust.Shared.GameStates;
  3. namespace Content.Shared.Actions;
  4. /// <summary>
  5. /// This component indicates that this entity contains actions inside of some container.
  6. /// </summary>
  7. [NetworkedComponent, RegisterComponent]
  8. [Access(typeof(ActionContainerSystem), typeof(SharedActionsSystem))]
  9. public sealed partial class ActionsContainerComponent : Component
  10. {
  11. public const string ContainerId = "actions";
  12. [ViewVariables]
  13. public Container Container = default!;
  14. }