1
2
3
4
5
6
7
8
9
10
11
12
13
use bevy::{app::PluginGroupBuilder, prelude::*};
use manufacturing::ManufacturingPlugin;
pub use manufacturing::{AssemblyLine, ChangeDeliveryLocationEvent, EnqueueAssemblyEvent};

mod manufacturing;

pub struct ConstructionPluginGroup;

impl PluginGroup for ConstructionPluginGroup {
    fn build(self) -> PluginGroupBuilder {
        PluginGroupBuilder::start::<Self>().add(ManufacturingPlugin)
    }
}