1 2 3 4 5 6 7 8 9 10 11
use bevy_auto_plugin::prelude::*; #[derive(AutoPlugin)] #[auto_plugin(impl_plugin_trait)] struct TestPlugin; #[auto_register_type(plugin = TestPlugin, generics(bool))] struct Foo<T1, T2>(T1, T2); // dummy main fn main() {}