warriorjs-engine
Version:
The bowels of WarriorJS
15 lines (13 loc) • 348 B
JavaScript
;
Object.defineProperty(exports, '__esModule', {
value: true
});
var DIRECTIONS = {
north: 'north',
east: 'east',
south: 'south',
west: 'west'
};
exports.DIRECTIONS = DIRECTIONS;
var ORDERED_DIRECTIONS = [DIRECTIONS.north, DIRECTIONS.east, DIRECTIONS.south, DIRECTIONS.west];
exports.ORDERED_DIRECTIONS = ORDERED_DIRECTIONS;