From 62eacf2c84fea64fa853f484b88f6ecb6fb6b63b Mon Sep 17 00:00:00 2001 From: CoCoSol007 Date: Wed, 21 Feb 2024 18:38:36 +0100 Subject: [PATCH] add doc --- crates/border-wars/src/map/generation.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/border-wars/src/map/generation.rs b/crates/border-wars/src/map/generation.rs index 9587d74..2de36e5 100644 --- a/crates/border-wars/src/map/generation.rs +++ b/crates/border-wars/src/map/generation.rs @@ -9,6 +9,7 @@ use super::{Tile, TilePosition}; /// A plugin to handle the map generation. pub struct MapGenerationPlugin; +/// The zoom of the map during the generation. const MAP_GENERATION_ZOOM: f32 = 0.2; impl Plugin for MapGenerationPlugin {