gpn-tron 0.1.0

Rust client library for the GPN Tron game (built for GPN 24, Karlsruhe).
Documentation
1
2
3
4
5
6
7
8
9
use gpn_tron::{GpnTronBot, demobot::DemoBot};

#[tokio::main]
async fn main() {
    let mut bot = DemoBot::new();
    bot.start("localhost", 4000, "mytest", "testpassword")
        .await
        .unwrap();
}