beet_core 0.0.8

Core utilities and types for other beet crates
1
2
3
4
5
6
7
8
use bevy::app::App;



/// Consistent interface for `!Send` types that want to be a [`Plugin`]
pub trait NonSendPlugin: Sized {
	fn build(self, app: &mut App);
}