mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-18 02:01:22 +01:00
refactor(es modules): dissolve general.js
This commit is contained in:
parent
9206f46c42
commit
2e4d142cf7
90 changed files with 802 additions and 749 deletions
|
|
@ -1,13 +1,13 @@
|
|||
import {TIME} from "/src/config/logging";
|
||||
import {layerIsOn} from "/src/layers";
|
||||
import {TIME} from "config/logging";
|
||||
import {layerIsOn} from "layers";
|
||||
import {Voronoi} from "/src/modules/voronoi";
|
||||
import {getColors, getMixedColor, getRandomColor} from "/src/utils/colorUtils";
|
||||
import {findCell} from "/src/utils/graphUtils";
|
||||
import {getAdjective, trimVowels} from "/src/utils/languageUtils";
|
||||
import {getMiddlePoint} from "/src/utils/lineUtils";
|
||||
import {minmax, rn} from "/src/utils/numberUtils";
|
||||
import {each, gauss, generateSeed, P, ra, rand, rw} from "/src/utils/probabilityUtils";
|
||||
import {round, splitInTwo} from "/src/utils/stringUtils";
|
||||
import {getColors, getMixedColor, getRandomColor} from "utils/colorUtils";
|
||||
import {findCell} from "utils/graphUtils";
|
||||
import {getAdjective, trimVowels} from "utils/languageUtils";
|
||||
import {getMiddlePoint} from "utils/lineUtils";
|
||||
import {minmax, rn} from "utils/numberUtils";
|
||||
import {each, gauss, generateSeed, P, ra, rand, rw} from "utils/probabilityUtils";
|
||||
import {round, splitInTwo} from "utils/stringUtils";
|
||||
|
||||
window.BurgsAndStates = (function () {
|
||||
const generate = function () {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue