1
2
3
4
5
6
7
8
9
//! Implementation of Cemuhook gamepad motion protocol.
//! 
//! Includes client and server implementations.
//! 
//! Navigate to github repository for [examples](https://github.com/zduny/pad_motion/tree/master/examples) of usage.

pub mod protocol;
pub mod server;
pub mod client;