summaryrefslogtreecommitdiff
path: root/src/renderer/mod.rs
diff options
context:
space:
mode:
authorKai Stevenson <kai@kaistevenson.com>2026-08-30 18:42:16 -0700
committerKai Stevenson <kai@kaistevenson.com>2026-08-30 18:42:16 -0700
commit56bba5560be95c1e05bfec11e4fc085654f3589d (patch)
treef4eee7eb7abdce9ab6d0a7a66e3e43d429229b97 /src/renderer/mod.rs
parenta0e3b22efb1d1a8b885717481061074459fe109f (diff)
working with tilesets
Diffstat (limited to 'src/renderer/mod.rs')
-rw-r--r--src/renderer/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/renderer/mod.rs b/src/renderer/mod.rs
index b5508e2..aca2b17 100644
--- a/src/renderer/mod.rs
+++ b/src/renderer/mod.rs
@@ -10,7 +10,7 @@ use crate::{
camera::Camera,
config::{CELLS_IN_CHUNK, CHUNK_SIZE},
content::{materials::MaterialId, vfx::VfxMaterialId},
- proc_gen::WorldGenerator,
+ proc_gen::TilesetWorldGenerator,
renderer::ui::draw_egui,
sim::{
cell_manager::manager::CellManager, entity::EntityId,
@@ -773,7 +773,7 @@ impl RendererState {
config: &mut Config,
diagnostics: &Diagnostics,
input_manager: &InputManager,
- world_generator: &mut WorldGenerator,
+ world_generator: &TilesetWorldGenerator,
) {
puffin::profile_function!();