tmc/src/object/objectA7.c

18 lines
315 B
C

/**
* @file objectA7.c
* @ingroup Objects
*
* @brief Object A7 object
*/
#define NENT_DEPRECATED
#include "entity.h"
void ObjectA7(Entity* this) {
if (this->action == 0) {
this->action = 1;
this->spritePriority.b0 = 6;
InitializeAnimation(this, 0);
}
GetNextFrame(this);
}