ensl_gathers/lib/gather/map.js

15 lines
255 B
JavaScript
Raw Normal View History

"use strict";
2015-07-29 13:50:39 +00:00
var fs = require("fs");
var path = require("path");
var source = JSON.parse(fs.readFileSync(path.join(__dirname, "../../config/data/maps.json")));
var mapList = source.maps;
function Map () {
}
2015-07-29 13:50:39 +00:00
Map.list = mapList;
module.exports = Map;