use bevy::prelude::*; pub mod marker; pub mod target_ui; pub fn plugin(app: &mut App) { app.add_plugins((marker::plugin, target_ui::plugin)); }