summaryrefslogtreecommitdiffstats
path: root/src/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/map.h b/src/map.h
index bfd544d..a2cd112 100644
--- a/src/map.h
+++ b/src/map.h
@@ -34,5 +34,9 @@ void db_map_get_player(struct db_map *map, int *x, int *y, int *r, int *gid);
void db_map_get_target(struct db_map *map, int *x, int *y, int *r, int *gid);
struct db_ball *db_map_get_balls(struct db_map *map)
__attribute__((__pure__));
+int db_map_tile_player_collides(struct db_map *map, int x, int y)
+ __attribute__((__pure__));
+int db_map_tile_ball_collides(struct db_map *map, int x, int y)
+ __attribute__((__pure__));
#endif /* DB_MAP_H_ */