mirror of
https://github.com/pret/pmd-red.git
synced 2025-02-17 12:01:08 +00:00
10 lines
228 B
C
10 lines
228 B
C
#ifndef GUARD_POSITION_UTIL_H
|
|
#define GUARD_POSITION_UTIL_H
|
|
|
|
#include "structs/str_position.h"
|
|
|
|
s32 GetDirectionTowardsPosition(Position *originPos, Position *targetPos);
|
|
s32 GetDistance(Position *pos1, Position *pos2);
|
|
|
|
#endif
|