mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
12 lines
253 B
Rust
12 lines
253 B
Rust
|
pub mod phys;
|
||
|
|
||
|
// External
|
||
|
use specs::DispatcherBuilder;
|
||
|
|
||
|
// System names
|
||
|
const MOVEMENT_SYS: &str = "movement_sys";
|
||
|
|
||
|
pub fn add_local_systems(dispatch_builder: &mut DispatcherBuilder) {
|
||
|
dispatch_builder.add(phys::MovementSys, MOVEMENT_SYS, &[]);
|
||
|
}
|