mirror of
https://github.com/zeldaret/tmc.git
synced 2026-09-27 05:55:47 -04:00
18 lines
367 B
C
18 lines
367 B
C
#include "global.h"
|
|
#include "entity.h"
|
|
#include "screen.h"
|
|
|
|
extern void sub_080576A0();
|
|
extern void sub_08052D74();
|
|
extern void sub_0805754C(Entity*);
|
|
|
|
void Manager2(Entity *this)
|
|
{
|
|
if (this->action == 0) {
|
|
this->action = 1;
|
|
gScreen.affine.bg3xOffset = 0;
|
|
gScreen.bg2.bg0xOffset = 0;
|
|
sub_08052D74(this, sub_080576A0, 0);
|
|
}
|
|
sub_0805754C(this);
|
|
} |