planetkit 0.0.1

High-level toolkit for building games based around voxel globes.
1
2
3
4
5
6
use piston::input::Input;

/// Handles Piston input events and dispatches them to systems.
pub trait InputAdapter {
    fn handle(&self, input_event: &Input);
}