Newer
Older
pub use big_brain_derive::*;
pub use serde;
pub use typetag;
pub use actions::*;
pub use choices::*;
pub use thinker::*;
pub mod evaluators;
pub mod pickers;
mod actions;
mod choices;
use bevy::prelude::*;
pub struct BigBrainPlugin;
impl Plugin for BigBrainPlugin {
fn build(&self, app: &mut AppBuilder) {
app.add_system(thinker_system.system());
app.add_system(fixed_score_system.system());
app.add_system(all_or_nothing_system.system());
app.add_system(sum_of_scorers_system.system());