10 lines
238 B
C#
10 lines
238 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server.NPC.Queries.Queries;
|
|
|
|
public sealed class NearbyComponentsQuery : UtilityQuery
|
|
{
|
|
[DataField("components")]
|
|
public EntityPrototype.ComponentRegistry Component = default!;
|
|
}
|