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

13 lines
243 B
C

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