mirror of
https://github.com/Noratrieb/game-wip-dontplay.git
synced 2026-01-14 19:55:02 +01:00
13 lines
358 B
Rust
13 lines
358 B
Rust
use worldgen::{
|
|
constraint, noise::perlin::PerlinNoise,
|
|
noisemap::{NoiseMap, NoiseMapGenerator, Seed, Step},
|
|
world::{
|
|
tile::{Constraint, ConstraintType},
|
|
Size, Tile, World,
|
|
},
|
|
};
|
|
use crate::{
|
|
tiles::{BgTileId, FgTileId, MidTileId, TileId},
|
|
world::{ChunkPos, Tile as Tl, CHUNK_EXTENT},
|
|
};
|
|
pub(crate) struct Worldgen {}
|