mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-28 19:17:53 +03:00
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!;
|
|
}
|