From 22abe7462e14947ee283b54f902f165a53cbef2e Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Wed, 11 Aug 2021 10:45:30 -0500 Subject: [PATCH] Export shadowcasting crate and its requirements. --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 3da47ab..98e21cd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,6 +6,7 @@ pub use bevy_input_actionmap; pub use bevy_openal; pub use bevy_rapier2d; pub use bevy_tts; +pub use coord_2d; #[macro_use] pub mod core; pub use derive_more; @@ -19,6 +20,7 @@ pub use mapgen; pub mod navigation; pub mod pathfinding; pub use rand; +pub use shadowcast; pub mod sound; pub mod utils; pub mod visibility;