pmd-sky/src/dg.c
2025-07-19 11:24:04 -04:00

13 lines
236 B
C

#include "dg.h"
#include "dungeon_util_static.h"
// file starts at 0x022dea5c
bool8 EntityIsValid__022E0354(struct entity *entity)
{
if (entity == NULL)
return FALSE;
return GetEntityType(entity) != ENTITY_NOTHING;
}