2025-05-28 19:52:11 +00:00
|
|
|
using Content.Shared.Actions;
|
2023-09-23 04:49:39 -04:00
|
|
|
using Robust.Shared.Containers;
|
|
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
2025-05-28 19:52:11 +00:00
|
|
|
namespace Content.Shared.Actions.Components;
|
2023-09-23 04:49:39 -04:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This component indicates that this entity contains actions inside of some container.
|
|
|
|
|
/// </summary>
|
2025-05-28 19:52:11 +00:00
|
|
|
[NetworkedComponent, RegisterComponent, Access(typeof(ActionContainerSystem), typeof(SharedActionsSystem))]
|
2023-09-23 04:49:39 -04:00
|
|
|
public sealed partial class ActionsContainerComponent : Component
|
|
|
|
|
{
|
|
|
|
|
public const string ContainerId = "actions";
|
|
|
|
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
public Container Container = default!;
|
|
|
|
|
}
|