pad_motion/
lib.rs

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