Files
crystall-punk-14/Content.Server/NPC/Queries/Queries/ComponentQuery.cs
2023-05-01 14:57:11 -04:00

13 lines
344 B
C#

using Robust.Shared.Prototypes;
namespace Content.Server.NPC.Queries.Queries;
/// <summary>
/// Returns nearby components that match the specified components.
/// </summary>
public sealed class ComponentQuery : UtilityQuery
{
[DataField("components", required: true)]
public EntityPrototype.ComponentRegistry Components = default!;
}