liquidwar7core 0.2.0

Liquidwar7 core logic library, low-level things which are game-engine agnostic.
Documentation
// Copyright (C) 2025 Christian Mauduit <ufoot@ufoot.org>

mod armies;
mod color;
mod cursor;
mod default_values;
mod fighter;
mod game_handler;
mod game_state;
mod grid;
pub mod chunks;
pub mod quad_mesh;
mod repr;
mod simulation;
mod step_timing;
mod team;
mod world;

pub use armies::*;
pub use color::*;
pub use step_timing::*;
pub use cursor::*;
pub use default_values::*;
pub use fighter::*;
pub use game_handler::*;
pub use game_state::*;
pub use grid::*;
pub use repr::*;
pub use simulation::*;
pub use team::*;
pub use world::*;