Merge branch 'main' of https://github.com/Ukendio/jecs
Some checks failed
analysis / Run Luau Analyze (push) Has been cancelled
deploy-docs / build (push) Has been cancelled
publish-npm / publish (push) Has been cancelled
unit-testing / Run Luau Tests (push) Has been cancelled
deploy-docs / Deploy (push) Has been cancelled

This commit is contained in:
Ukendio 2025-04-05 04:55:21 +02:00
commit 6bb36f281e
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
# Queries # Queries
## Introductiuon ## Introduction
Queries enable games to quickly find entities that satifies provided conditions. Queries enable games to quickly find entities that satifies provided conditions.

2
jecs.d.ts vendored
View file

@ -258,7 +258,7 @@ export function pair_second<P, O>(world: World, p: Pair<P, O>): Entity<O>;
export declare const OnAdd: Entity<(e: Entity) => void>; export declare const OnAdd: Entity<(e: Entity) => void>;
export declare const OnRemove: Entity<(e: Entity) => void>; export declare const OnRemove: Entity<(e: Entity) => void>;
export declare const OnSet: Entity<(e: Entity, value: unknown) => void>; export declare const OnChange: Entity<(e: Entity, value: unknown) => void>;
export declare const ChildOf: Tag; export declare const ChildOf: Tag;
export declare const Wildcard: Entity; export declare const Wildcard: Entity;
export declare const w: Entity; export declare const w: Entity;