├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── automerge.yml │ ├── build.yml │ └── phpstan.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── phpstan.neon.dist ├── plugin.yml └── src └── muqsit └── vanillagenerator ├── Loader.php └── generator └── OverworldGenerator.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetherGamesMC/VanillaGenerator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetherGamesMC/VanillaGenerator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetherGamesMC/VanillaGenerator/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetherGamesMC/VanillaGenerator/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/phpstan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetherGamesMC/VanillaGenerator/HEAD/.github/workflows/phpstan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetherGamesMC/VanillaGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetherGamesMC/VanillaGenerator/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetherGamesMC/VanillaGenerator/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetherGamesMC/VanillaGenerator/HEAD/composer.lock -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetherGamesMC/VanillaGenerator/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetherGamesMC/VanillaGenerator/HEAD/plugin.yml -------------------------------------------------------------------------------- /src/muqsit/vanillagenerator/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetherGamesMC/VanillaGenerator/HEAD/src/muqsit/vanillagenerator/Loader.php -------------------------------------------------------------------------------- /src/muqsit/vanillagenerator/generator/OverworldGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetherGamesMC/VanillaGenerator/HEAD/src/muqsit/vanillagenerator/generator/OverworldGenerator.php --------------------------------------------------------------------------------