rlbot 0.0.6

RLBot bindings for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg(windows)]

extern crate rlbot;
extern crate winapi;
extern crate winproc;

mod common;

#[test]
#[should_panic]
fn integration_init_twice() {
    common::with_rocket_league(|| {
        drop(rlbot::init());
        drop(rlbot::init());
    })
}