bowling 0.0.1

A crate to deal with bowling scoring.
Documentation
1
2
3
4
5
6
7
8
9
mod frame;
mod gamestate;
mod player;
mod throw;

pub use self::gamestate::GameState;
pub use self::player::Player;
pub use self::frame::Frame;
pub use self::throw::Throw;