hammerspace 0.4.2

A plugin for the loading and management of levels and scenes, and their physical properties
Documentation
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));
    }
}