| Name | Message | Date |
|---|---|---|
| 📄 bunny.rs | 13 hours ago | |
| 📄 locator.rs | 13 hours ago | |
| 📄 mod.rs | 13 hours ago |
📄
src/bunnies/mod.rs
mod bunny; 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) } }