6
StarHorizon_Public/Content.Shared/Silicons/StationAi/StationAiWhitelistComponent.cs
2025-12-13 13:46:17 +03:00

14 lines
449 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Silicons.StationAi;
/// <summary>
/// Indicates an entity that has <see cref="StationAiHeldComponent"/> can interact with this.
/// </summary>
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedStationAiSystem))]
public sealed partial class StationAiWhitelistComponent : Component
{
[DataField, AutoNetworkedField]
public bool Enabled = true;
}