beet_ml 0.0.8

Machine Learning actions built upon beet_flow
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::prelude::*;
use beet_core::prelude::*;


#[derive(Default)]
pub struct RlPlugin;

impl Plugin for RlPlugin {
	fn build(&self, app: &mut App) {
		app.register_type::<SessionEntity>();
		let world = app.world_mut();
		world.register_component::<SessionEntity>();
	}
}