mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
1af4a04231
This reverts merge request !2172
11 lines
356 B
Rust
11 lines
356 B
Rust
pub mod floater;
|
|
mod interpolation;
|
|
|
|
use common_ecs::{dispatch, System};
|
|
use specs::DispatcherBuilder;
|
|
|
|
pub fn add_local_systems(dispatch_builder: &mut DispatcherBuilder) {
|
|
dispatch::<interpolation::Sys>(dispatch_builder, &[&common_systems::phys::Sys::sys_name()]);
|
|
dispatch::<floater::Sys>(dispatch_builder, &[&interpolation::Sys::sys_name()]);
|
|
}
|