Files
tmc/src/object/objectB5.c
T
2022-03-28 17:28:17 -07:00

15 lines
294 B
C

#include "entity.h"
#include "room.h"
#include "player.h"
#include "physics.h"
void ObjectB5(Entity* this) {
if (this->action == 0) {
this->action = 1;
}
#ifndef EU
gRoomControls.camera_target = this;
#endif
PositionRelative(&gPlayerEntity, this, 0, Q_16_16(-40.0));
}