mirror of
https://github.com/pret/pmd-red.git
synced 2026-03-24 02:54:52 -05:00
11 lines
316 B
C
11 lines
316 B
C
#ifndef GUARD_DUNGEON_RANGE_H
|
|
#define GUARD_DUNGEON_RANGE_H
|
|
|
|
#include "position.h"
|
|
|
|
bool8 IsPositionActuallyInSight(struct Position *pos1, struct Position *pos2);
|
|
bool8 IsPositionInSight(struct Position *pos1, struct Position *pos2);
|
|
bool8 IsTargetTwoTilesAway(struct Position *pos1, struct Position *pos2);
|
|
|
|
#endif
|