pong-cli 1.0.1

Play pong from the command-line!
Documentation
pub mod prelude {
    pub use super::Rect;
    pub use super::Side;
}

#[derive(Clone, Copy, PartialEq)]
pub enum Side {
    Top,
    Bottom,
    Left,
    Right,
}

#[derive(Clone)]
pub struct Rect {
    pub top:    f32,
    pub bottom: f32,
    pub left:   f32,
    pub right:  f32,
}