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