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