Fake commit

This commit is contained in:
Macrepeh
2020-10-18 15:28:07 -04:00
committed by GitHub
parent baa826e062
commit a215cfd7f2
2 changed files with 56 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#include "global.h"
#include "entity.h"
#include "functions.h"
void FloatingBlock(Entity* this) {
if (this->action == 0) {
this->action = 1;
this->frameIndex=this->entityType.form;
this->spritePriority.b0 = 0xe;
this->collisionLayer = 1;
UpdateSpriteForCollisionLayer(this);
}
}