From 4696fc980a9db63cfac5458fd63e4422019e2ec6 Mon Sep 17 00:00:00 2001 From: EncodedVenom <32179912+EncodedVenom@users.noreply.github.com> Date: Thu, 8 May 2025 21:34:41 -0400 Subject: [PATCH] Update jecs.d.ts --- jecs.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jecs.d.ts b/jecs.d.ts index 2b360e8..01239fd 100644 --- a/jecs.d.ts +++ b/jecs.d.ts @@ -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;