aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/vec_s.c
blob: 2d4370659fd23d24c2fe4ad74d71b03a4b8da837 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include "vec_s.h"

const struct vec2i adj[4] = {
	{  0, -1 },
	{  1,  0 },
	{  0,  1 },
	{ -1,  0 },
};

char adj_c[4] = {
	'N', 'E', 'S', 'W'
};