~starkingdoms/starkingdoms

ref: b6949834d53aadf53fa99b5f914a3dac09702395 starkingdoms/crates/unified/src/shared_plugins.rs -rw-r--r-- 217 bytes
b6949834 — core replication experiment 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
use bevy::app::{PluginGroup, PluginGroupBuilder};

pub struct SharedPluginGroup;

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