hyperultra/src/map.h

10 lines
180 B
C
Raw Permalink Normal View History

2023-03-17 13:45:20 +01:00
#pragma once
2023-03-17 21:07:07 +01:00
void map_next(void);
2023-03-17 20:44:59 +01:00
int map_width(void);
int map_height(void);
2023-03-17 13:45:20 +01:00
int map_get(int x, int y);
int map_get_px(int x, int y);
void map_draw(void);
2023-03-21 22:19:31 +01:00
void map_draw_ui(void);