mirror of
https://github.com/pret/pmd-red.git
synced 2026-03-22 01:54:50 -05:00
10 lines
236 B
C
10 lines
236 B
C
#ifndef GUARD_POSITION_UTIL_H
|
|
#define GUARD_POSITION_UTIL_H
|
|
|
|
#include "structs/str_position.h"
|
|
|
|
s32 GetDirectionTowardsPosition(DungeonPos *originPos, DungeonPos *targetPos);
|
|
s32 GetDistance(DungeonPos *pos1, DungeonPos *pos2);
|
|
|
|
#endif
|