1
2
3
4
5
6
7
8
extern crate failure;
#[macro_use]
extern crate failure_derive;

pub mod gamestate;
pub use gamestate::GameState;
pub use gamestate::Player;
pub use gamestate::Throw;