coup 1.1.1

The COUP game implemented in the CLI
Documentation
1
2
3
4
5
6
7
8
9
//! A collection of pre-built bots to test with.

pub mod honest_bot;
pub mod random_bot;
pub mod static_bot;

pub use honest_bot::HonestBot;
pub use random_bot::RandomBot;
pub use static_bot::StaticBot;