mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2024-11-27 22:52:36 +00:00
14 lines
255 B
JavaScript
14 lines
255 B
JavaScript
"use strict";
|
|
|
|
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 () {
|
|
|
|
}
|
|
|
|
Map.list = mapList;
|
|
|
|
module.exports = Map;
|