refactor mods
All checks were successful
Build Bevy Game (Linux + Windows) / build-windows (push) Successful in 19m22s
Build Bevy Game (Linux + Windows) / build-linux (push) Successful in 19m24s

This commit is contained in:
Crizomb 2025-12-31 18:46:50 +01:00
parent 6adc38c35c
commit 467f147142
17 changed files with 77 additions and 113 deletions

7
src/map/map.rs Normal file
View file

@ -0,0 +1,7 @@
use bevy::prelude::*;
#[derive(Resource)]
pub struct MapBounds {
pub min: Vec2,
pub max: Vec2,
}