export const TICS_PER_SECOND = 20; export const DIRECTIONS = { north: { movement: [0, -1], left: 'west', right: 'east', opposite: 'south', }, south: { movement: [0, 1], left: 'east', right: 'west', opposite: 'north', }, west: { movement: [-1, 0], left: 'south', right: 'north', opposite: 'east', }, east: { movement: [1, 0], left: 'north', right: 'south', opposite: 'west', }, };