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

13 lines
213 B
C

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