summaryrefslogtreecommitdiff
path: root/map.c
blob: 8c1251410de6c42a37041e06a92c30810b5bc41f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
int map_width = 8;
int map_height = 8;

char map_data[] = {
	1, 0, 0, 0, 0, 0, 0, 0, 
	0, 1, 1, 0, 0, 0, 0, 0, 
	0, 1, 1, 0, 0, 0, 0, 0, 
	0, 1, 1, 0, 0, 0, 0, 0, 
	0, 0, 0, 0, 0, 1, 1, 0, 
	0, 0, 0, 0, 0, 1, 1, 0, 
	0, 0, 0, 0, 0, 1, 1, 0, 
	0, 0, 0, 0, 0, 0, 0, 0, 
	0, 0, 0, 0, 0, 0, 0, 0, 
};