shithub: dmap

ref: 50673d39401ce2e58b03f11dfde9b6759655e764
dir: /dbsp.c/

View raw version
#include <u.h>
#include <libc.h>
#include <thread.h>
#include <draw.h>
#include "dat.h"
#include "fns.h"

static void
usage(void)
{
	fprint(2, "%s [mapdir]\n", argv0);
	threadexitsall("usage");
}

void
threadmain(int argc, char *argv[])
{
	Mouse m;
	Point mo;
	double f, vx, vy;
	Rune r;

	ARGBEGIN{
	default:
		usage();
	}ARGEND
	load(*argv);
	buildnodes();
	threadexitsall(nil);
}