mirror of
https://github.com/zeldaret/tmc
synced 2026-05-31 17:32:43 -04:00
17 lines
367 B
C
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();
|
|
}
|
|
}
|
|
}
|