hyperultra/src/map.h

10 lines
180 B
C

#pragma once
void map_next(void);
int map_width(void);
int map_height(void);
int map_get(int x, int y);
int map_get_px(int x, int y);
void map_draw(void);
void map_draw_ui(void);