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
17
pub mod components;
pub mod export;
pub mod net;
pub mod plugins;
#[cfg(feature = "render")]
pub mod render;
#[cfg(feature = "render")]
pub mod scenes;

pub mod prelude {
	pub use crate::components::*;
	pub use crate::export::*;
	pub use crate::net::*;
	pub use crate::plugins::*;
	#[cfg(feature = "render")]
	pub use crate::render::*;
}