use bevy::prelude::*;
use robocomp::RobocompPlugin;
use crate::pre_processor_plugin::PreProcessorPlugin;
pub struct RobocompRapierPlugin;
impl Plugin for RobocompRapierPlugin {
fn build(&self, app: &mut App) {
app.add_plugins((RobocompPlugin, PreProcessorPlugin))
.add_systems(Startup, || info!("RobocompRapierPlugin started..."));
}
}