Reformatted EntityIsValid

This commit is contained in:
AnonymousRandomPerson
2025-03-06 00:03:42 -05:00
parent f4ecfd41e6
commit 68f59117a7
55 changed files with 55 additions and 110 deletions

View File

@@ -5,8 +5,7 @@
bool8 EntityIsValid__022E0354(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -8,9 +8,8 @@ extern bool8 HasHeldItem(struct entity* entity, enum item_id item_id);
bool8 EntityIsValid__022E32E8(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -5,8 +5,7 @@
bool8 EntityIsValid__022E37B8(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -8,9 +8,8 @@ extern s32 ov29_022DE954(u32);
bool8 EntityIsValid__022E1A1C(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -5,8 +5,7 @@
bool8 EntityIsValid__022E95F4(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -29,9 +29,8 @@ extern bool8 MonsterCanThrowItems(struct monster *monster);
bool8 EntityIsValid__0230E8F0(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -104,8 +104,7 @@ void GetPossibleAiThrownItemDirections(struct entity *entity, s32 ally_or_enemy,
bool8 EntityIsValid__0230F008(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__022EC608(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__022ECDC0(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -14,8 +14,7 @@ bool8 ItemIsActive__022EE318(struct entity *entity, enum item_id item_id)
bool8 EntityIsValid__022EE348(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__022EF7A0(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__022F0590(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__022F528C(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__022F62A8(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__022F7364(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__022FC99C(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -4,9 +4,8 @@
bool8 EntityIsValid__022FED98(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}
#endif

View File

@@ -4,9 +4,8 @@
bool8 EntityIsValid__022FED98(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}
#endif

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__023000E4(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__02302A38(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__023047B8(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__0230558C(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__02305C04(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -6,9 +6,8 @@ extern bool8 HasHeldItem(struct entity* entity, enum item_id item_id);
bool8 EntityIsValid__02307EF8(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__0230827C(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__02308FBC(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -6,9 +6,8 @@ extern bool8 HasHeldItem(struct entity* entity, enum item_id item_id);
bool8 EntityIsValid__02311010(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__023118B4(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -6,9 +6,8 @@ extern bool8 HasHeldItem(struct entity* entity, enum item_id item_id);
bool8 EntityIsValid__02315118(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__02318D34(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__02318E4C(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__02319F8C(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__0231B194(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__0231CBC8(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__0231EDD8(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__0231F570(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__0231FBFC(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__0232017C(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__02320764(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__02321438(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__02325620(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValidMoveEffects__0232800C(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValidMoveEffects__0232A3D8(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValidMoveEffects__0232C500(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -8,9 +8,8 @@ extern void BoostDefensiveStat(struct entity* user, struct entity* target, s32 s
bool8 EntityIsValidMoveEffects__0232E250(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__0232E840(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__02333FAC(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__023350D8(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__02337CA8(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__02344AF8(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__02345698(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__02347BA4(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__0234987C(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__0234DDD0(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}

View File

@@ -3,8 +3,7 @@
bool8 EntityIsValid__0234EC14(struct entity *entity)
{
if (entity == NULL)
{
return FALSE;
}
return entity->type != ENTITY_NOTHING;
}