1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Mapgen: Add 4D fractal mapgen

This commit is contained in:
paramat 2015-04-14 04:38:01 +01:00
parent ce1a70c703
commit e62eac49d5
4 changed files with 733 additions and 0 deletions

View file

@ -34,6 +34,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "log.h"
#include "map.h"
#include "mapblock.h"
#include "mapgen_fractal.h"
#include "mapgen_v5.h"
#include "mapgen_v6.h"
#include "mapgen_v7.h"
@ -104,6 +105,7 @@ MapgenDesc g_reg_mapgens[] = {
{"v5", new MapgenFactoryV5, true},
{"v6", new MapgenFactoryV6, true},
{"v7", new MapgenFactoryV7, true},
{"fractal", new MapgenFactoryFractal, false},
{"singlenode", new MapgenFactorySinglenode, false},
};