BitmapWars/src/map.h

13 lines
185 B
C

#ifndef MAP_H
#define MAP_H
#include <gint/display.h>
extern image_t img_houses;
extern image_t img_wall;
int get_item(int x, int y);
void set_item(int x, int y, int item);
#endif