blackout/src/lib.rs

25 lines
491 B
Rust

#![allow(clippy::needless_range_loop)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::type_complexity)]
pub use bevy;
pub use bevy_rapier2d;
pub use bevy_synthizer;
pub use bevy_tts;
pub use coord_2d;
#[macro_use]
pub mod core;
pub mod error;
pub mod exploration;
pub use here_be_dragons as mapgen;
pub use leafwing_input_manager;
pub mod log;
pub mod map;
pub mod navigation;
pub mod pathfinding;
pub use rand;
pub use shadowcast;
pub mod sound;
pub mod utils;
pub mod visibility;