1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
//! # Block Breaker
//!
//! A library for the block breaker game.

extern crate rand;

mod ball;
mod bar;
mod block;
mod dimensions;
mod gamestate;
mod position;
mod vector;

pub use ball::Ball;
pub use bar::Bar;
pub use block::Block;
pub use dimensions::Dimensions;
pub use gamestate::GameState;
pub use position::Position;
pub use vector::Vector;