pmd-sky/src/dungeon_util_1.c
2025-07-18 20:57:20 -04:00

8 lines
171 B
C

#include "dungeon_util_1.h"
#include "dungeon_map_access.h"
struct tile* GetTileAtEntity(struct entity *entity)
{
return GetTileSafe(entity->pos.x, entity->pos.y);
}