mirror of
https://github.com/pret/pmd-sky.git
synced 2026-07-28 06:18:30 -05:00
13 lines
205 B
C
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;
|
|
}
|