2019-08-25 00:46:40 -04:00
|
|
|
// tower_door.c.inc
|
|
|
|
|
|
|
|
void bhv_tower_door_loop(void) {
|
|
|
|
if (o->oTimer == 0)
|
|
|
|
o->oMoveAngleYaw -= 0x4000;
|
2020-03-01 22:42:52 -05:00
|
|
|
if (check_mario_attacking(0)) {
|
|
|
|
obj_explode_and_spawn_coins(80.0f, 0);
|
2019-10-05 15:08:05 -04:00
|
|
|
create_sound_spawner(SOUND_GENERAL_WALL_EXPLOSION);
|
2019-08-25 00:46:40 -04:00
|
|
|
}
|
|
|
|
}
|