Fantasy-Map-Generator/modules/production-generator.js
2021-08-06 21:06:49 +03:00

12 lines
191 B
JavaScript

'use strict';
window.Production = (function () {
const collectResources = () => {
const {burgs} = pack;
for (const burg of burgs) {
}
};
return {collectResources};
})();