mirror of
https://github.com/pret/pmd-red.git
synced 2026-03-22 10:04:40 -05:00
10 lines
244 B
C
10 lines
244 B
C
#ifndef GUARD_POSITION_UTIL_H
|
|
#define GUARD_POSITION_UTIL_H
|
|
|
|
#include "position.h"
|
|
|
|
s32 GetDirectionTowardsPosition(struct Position *originPos, struct Position *targetPos);
|
|
s32 GetDistance(struct Position *pos1, struct Position *pos2);
|
|
|
|
#endif
|