aboutsummaryrefslogtreecommitdiff
path: root/src/control/mod.rs
blob: 0290f2cf80714b6d8de1e647aba9c9292bec461e (plain)
1
2
3
4
5
6
7
8
//! Utilities for controlling the trajectories of objects in a non-physical way.

pub use self::character_controller::{
    CharacterAutostep, CharacterCollision, CharacterLength, EffectiveCharacterMovement,
    KinematicCharacterController,
};

mod character_controller;