hanabi.rs/src/main.rs

15 lines
249 B
Rust
Raw Normal View History

2016-03-06 01:54:46 +01:00
extern crate rand;
mod game;
2016-03-06 07:49:40 +01:00
mod strategies;
2016-03-06 01:54:46 +01:00
fn main() {
2016-03-06 07:49:40 +01:00
let opts = game::GameOptions {
2016-03-06 01:54:46 +01:00
num_players: 4,
hand_size: 4,
2016-03-06 07:49:40 +01:00
num_hints: 8,
num_lives: 3,
};
strategies::simulate(opts, strategies::AlwaysPlay);
2016-03-06 01:54:46 +01:00
}