summaryrefslogtreecommitdiff
path: root/src/sector.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sector.h')
-rw-r--r--src/sector.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sector.h b/src/sector.h
index 438184b..b77c2c7 100644
--- a/src/sector.h
+++ b/src/sector.h
@@ -20,13 +20,13 @@ typedef struct {
} map_t;
int map_draw(map_t *map, int SW, int SH); // SW and SH should be uint
-void map_player_sector(map_t *map);
+void map_detect_collision(map_t *map);
int map_load(map_t *map, char *filename);
void map_unload(map_t *map);
-void map_print(map_t *map);
int map_save(map_t *map, char *filename);
+void map_print(map_t *map);
#endif