mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-17 09:41:24 +01:00
12 lines
191 B
JavaScript
12 lines
191 B
JavaScript
'use strict';
|
|
|
|
window.Production = (function () {
|
|
const collectResources = () => {
|
|
const {burgs} = pack;
|
|
|
|
for (const burg of burgs) {
|
|
}
|
|
};
|
|
|
|
return {collectResources};
|
|
})();
|