2023-05-02 04:57:11 +10:00
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.NPC.Queries.Queries;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns nearby components that match the specified components.
|
|
|
|
|
/// </summary>
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class ComponentQuery : UtilityQuery
|
2023-05-02 04:57:11 +10:00
|
|
|
{
|
|
|
|
|
[DataField("components", required: true)]
|
2023-05-19 15:45:09 -05:00
|
|
|
public ComponentRegistry Components = default!;
|
2023-05-02 04:57:11 +10:00
|
|
|
}
|