hanabi.rs/src/main.rs

13 lines
192 B
Rust
Raw Normal View History

2016-03-06 01:54:46 +01:00
extern crate rand;
mod game;
fn main() {
game::GameState::new(game::GameOptions {
num_players: 4,
hand_size: 4,
total_hints: 8,
total_lives: 3,
});
}