fish-station/Content.Shared/Actions/ActionContainerComponent.cs
Leon Friedrich 684b334806
Action container rejig (#20260)
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
2023-09-23 18:49:39 +10:00

17 lines
510 B
C#

using Robust.Shared.Containers;
using Robust.Shared.GameStates;
namespace Content.Shared.Actions;
/// <summary>
/// This component indicates that this entity contains actions inside of some container.
/// </summary>
[NetworkedComponent, RegisterComponent]
[Access(typeof(ActionContainerSystem), typeof(SharedActionsSystem))]
public sealed partial class ActionsContainerComponent : Component
{
public const string ContainerId = "actions";
[ViewVariables]
public Container Container = default!;
}