📄 src/bunnies/mod.rs
mod bunny;
mod heart;
mod locator;

use bevy::app::App;

use crate::bunnies::{bunny::add_bunny_systems, locator::add_locator};

pub trait BunnySystems {
    fn add_bunny_systems(&mut self) -> &mut Self;
}

impl BunnySystems for App {
    fn add_bunny_systems(&mut self) -> &mut Self {
        add_bunny_systems(self);
        add_locator(self)
    }
}