Update jecs.d.ts

This commit is contained in:
EncodedVenom 2025-05-08 21:34:41 -04:00 committed by GitHub
parent a19a422c17
commit 4696fc980a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

4
jecs.d.ts vendored
View file

@ -212,9 +212,9 @@ export class World {
contains(entity: Entity): boolean;
/**
* Checks if there is any entity alive right now, regardless of generation.
* Checks if an entity with the given ID is currently alive, ignoring its generation.
* @param entity The entity to verify.
* @returns True if the entity is alive.
* @returns boolean true if any entity with the given ID exists (ignoring generation), false otherwise
*/
exists(entity: Entity): boolean;