beet_sim 0.0.7

Game AI simulation primitives built upon beet_flow
Documentation
#![cfg_attr(test, feature(test, custom_test_frameworks))]
#![cfg_attr(test, test_runner(sweet::test_runner))]
#![allow(unused)]
pub mod behavior;
pub mod plugins;
pub mod render;
pub mod sim;
pub mod stat_modifiers;
pub mod stats;





pub mod prelude {
	pub use crate::behavior::*;
	pub use crate::plugins::*;
	pub use crate::render::*;
	pub use crate::sim::*;
	pub use crate::stat_modifiers::*;
	pub use crate::stats::*;
}