Files
tmc/src/manager/manager11.c
T
2021-12-28 12:08:30 -08:00

17 lines
367 B
C

#include "manager.h"
#include "flags.h"
void Manager11_Main(Manager11* this) {
if (!this->manager.action) {
this->manager.action = 1;
if (CheckFlags(this->unk_3c)) {
DeleteThisEntity();
}
} else {
if (CheckFlags(this->unk_3e)) {
SetFlag(this->unk_3c);
DeleteThisEntity();
}
}
}