~starkingdoms/starkingdoms

ref: 144af6a353933efbedcbfaa3b08db3c52c12dcaf starkingdoms/crates/unified/src/ship_editor/plugins.rs -rw-r--r-- 233 bytes
144af6a3ghostly_zsh chore: move ship editor to unified codebase a day ago
                                                                                
1
2
3
4
5
6
7
8
9
10
use bevy::app::PluginGroupBuilder;
use crate::prelude::*;

pub struct ShipEditorPluginGroup;

impl PluginGroup for ShipEditorPluginGroup {
    fn build(self) -> PluginGroupBuilder {
        PluginGroupBuilder::start::<Self>()
    }
}