mirror of https://github.com/zeldaret/tmc.git
20 lines
419 B
C
20 lines
419 B
C
#include "global.h"
|
|
#include "entity.h"
|
|
|
|
extern u32 CheckRectOnScreen(s16, s16, u32, u32);
|
|
extern void DeleteThisEntity();
|
|
|
|
void Object1C(Entity *this)
|
|
{
|
|
s32 iVar1;
|
|
|
|
if (this->action == 0) {
|
|
this->action = 1;
|
|
}
|
|
iVar1 = CheckRectOnScreen(this->field_0x80, this->field_0x82, 0x10, 0x10);
|
|
if (iVar1 == 0) {
|
|
this->parent->field_0x20 &= ~(1 << this->entityType.parameter2);
|
|
DeleteThisEntity();
|
|
}
|
|
}
|