shithub: asif

ref: 516586152ab26883f5e57436634d9e5a715ff60a
dir: /path/map.c/

View raw version
#include <u.h>
#include <libc.h>
#include "../asif.h"
#include "dat.h"
#include "fns.h"

Node *map;
int mapwidth, mapheight;

void
initmap(void)
{
	map = emalloc(mapwidth * mapheight * sizeof *map);
}