mirror of
https://github.com/zeldaret/tmc
synced 2026-06-08 12:27:21 -04:00
11 lines
196 B
C
11 lines
196 B
C
|
|
#include "global.h"
|
|
#include "entity.h"
|
|
void PositionRelative(Entity*, Entity*, s32, s32);
|
|
|
|
void CopyPosition(Entity* param_1, Entity* param_2)
|
|
|
|
{
|
|
PositionRelative(param_1, param_2, 0, 0);
|
|
}
|