| Crates.io | halite3bdk |
| lib.rs | halite3bdk |
| version | 0.1.0 |
| created_at | 2020-09-01 11:36:59.036461+00 |
| updated_at | 2020-09-01 11:36:59.036461+00 |
| description | Bot Development Kit for Halite III |
| homepage | https://github.com/stjepangolemac/halite3bdk |
| repository | https://github.com/stjepangolemac/halite3bdk |
| max_upload_size | |
| id | 283379 |
| size | 42,008 |
A Rust Bot Development Kit for Halite III.
A minimal example:
use halite3bdk::game::Game;
fn main() {
let mut game = Game::init("bot1");
loop {
game.next_turn();
// your logic goes here
game.end_turn();
}
}
For more complex behaviors check out the examples/ dir.