use bevy::prelude::*;
use resources::Handles;
use systems::get_path;
use vleue_navigator::VleueNavigatorPlugin;
pub mod components;
pub mod events;
pub mod resources;
pub mod systems;
pub struct PathFindPlugin;
impl Plugin for PathFindPlugin {
fn build(&self, app: &mut App) {
app.add_plugins(VleueNavigatorPlugin)
.add_systems(Update, get_path)
.insert_resource::<Handles>(Handles(None, None));
}
}