2020-01-10 00:33:38 +00:00
|
|
|
pub mod floater;
|
|
|
|
mod interpolation;
|
|
|
|
|
|
|
|
use specs::DispatcherBuilder;
|
|
|
|
|
|
|
|
// System names
|
|
|
|
const FLOATER_SYS: &str = "floater_voxygen_sys";
|
|
|
|
const INTERPOLATION_SYS: &str = "interpolation_voxygen_sys";
|
|
|
|
|
|
|
|
pub fn add_local_systems(dispatch_builder: &mut DispatcherBuilder) {
|
2020-02-01 20:39:39 +00:00
|
|
|
dispatch_builder.add(interpolation::Sys, INTERPOLATION_SYS, &[
|
2020-12-01 00:28:00 +00:00
|
|
|
common_sys::PHYS_SYS,
|
2020-02-01 20:39:39 +00:00
|
|
|
]);
|
2020-01-10 00:33:38 +00:00
|
|
|
dispatch_builder.add(floater::Sys, FLOATER_SYS, &[INTERPOLATION_SYS]);
|
|
|
|
}
|