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' };