coup 1.1.1

The COUP game implemented in the CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! A static bot implementation for you to use to test your own bot with.

use crate::bot::BotInterface;

/// The static bot only takes [crate::Action::Income] on turns and is eventually
/// forced by the engine to coup another bot.
/// It won't challenge, counter or act on its own cards at all.
pub struct StaticBot;

impl BotInterface for StaticBot {
	/// StaticBot is the name
	fn get_name(&self) -> String {
		String::from("StaticBot")
	}
}