samp-sdk 0.9.2

Bindings for C SA:MP SDK
1
2
3
4
5
6
7
8
9
use colored::*;

fn main() {
    if cfg!(not(target_arch = "x86")) {
        eprintln!("{}: samp-sdk can be compiled only for {} target arch.", "error".red(), "x86".green());
        eprintln!("{}: install a i686 toolchain for example {}", "help".yellow(), "rustup install stable-i686-pc-windows-msvc".green());
        panic!();
    }
}