pmd-sky/src/dg.c
AnonymousRandomPerson 4f3aeeb00d Renamed bool to bool8
2024-11-15 00:45:43 -05:00

13 lines
205 B
C

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