mirror of
https://github.com/pret/pmd-sky.git
synced 2026-04-20 08:37:22 -05:00
13 lines
236 B
C
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;
|
|
}
|