gamai 0.1.39

Modular task switching library suitable for Game AI and Robotics.
Documentation
pub mod action;
pub mod builtin_nodes;
pub mod edge;
pub mod extensions;
pub mod graph_utils;
pub mod node;
pub mod prop;

// allows proc macros to work internally
extern crate self as gamai;

pub mod prelude {

	pub use crate::action::*;
	pub use crate::builtin_nodes::actions::*;
	pub use crate::builtin_nodes::selectors::*;
	pub use crate::builtin_nodes::*;
	pub use crate::edge::*;
	pub use crate::extensions::*;
	pub use crate::graph_utils::*;
	pub use crate::node::*;
	pub use crate::prop::*;
	pub use gamai_macros::*;
}


pub mod exports {
	pub use bevy_ecs::prelude::*;
	pub use bevy_ecs::schedule::SystemConfigs;
	pub use bevy_ecs::system::EntityCommands;
	pub use serde;
	pub use serde::Deserialize;
	pub use serde::Serialize;
	pub use typetag;
}