beetmash_core 0.0.7

The number one bevy scene registry.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// use crate::beet::prelude::*;
// use beetmash::prelude::*;
// use bevy::prelude::*;

// #[rustfmt::skip]
// pub fn hello_net(mut commands: Commands) {
// 	commands.spawn((
// 		Name::new("Recv - AppReady"),
// 		RunOnAppReady::default()
// 	));
// 	commands.spawn((
// 		Name::new("Send - AppReady"),
// 		RunOnSpawn,
// 		TriggerOnRun::new(AppReady)
// 	));
// }