mirror of
https://github.com/zeldaret/tmc
synced 2026-05-28 16:32:07 -04:00
15 lines
294 B
C
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));
|
|
}
|