feat: Barely working tilemap system

- Added tilemap bundle
- Added HALVED_METERS_PER_PIXEL constant
This commit is contained in:
Alexey 2026-03-23 14:06:36 +03:00
commit b59cec172d
8 changed files with 109 additions and 18 deletions

View file

@ -16,6 +16,7 @@ mod tests;
pub mod ui;
pub const PIXELS_PER_METER: f32 = 16.0;
pub const HALVED_PIXELS_PER_METER: f32 = PIXELS_PER_METER * 0.5;
pub struct ExpeditionPlugin;