Files
tmc/src/object/archway.c
T
2021-12-28 13:53:53 -08:00

16 lines
372 B
C

#include "entity.h"
#include "game.h"
void Archway(Entity* this) {
if (this->action == 0) {
this->action = 1;
this->spriteSettings.draw = 1;
this->frameIndex = this->type2;
this->collisionLayer = 2;
UpdateSpriteForCollisionLayer(this);
if (CheckIsDungeon()) {
this->spritePriority.b0 = 1;
}
}
}