1 2 3 4 5 6 7 8 9 10 11
// Wraps bevy things like Commands, Asset handling and Resources use bevy::prelude::*; pub struct BevyWrapperPlugin; impl Plugin for BevyWrapperPlugin { fn build(&self, app: &mut App) { todo!() } }