gmod-rs/gmod
William Venner 2b3de9234c re-export gmserverplugin with new feature flag 2021-10-27 20:46:13 +01:00
..
src re-export gmserverplugin with new feature flag 2021-10-27 20:46:13 +01:00
Cargo.toml re-export gmserverplugin with new feature flag 2021-10-27 20:46:13 +01:00
README.md Publish 2021-09-17 18:08:22 +01:00

README.md

crates.io

docs.rs

⚙ gmod-rs

A swiss army knife for creating binary modules for Garry's Mod in Rust.

Example

rust-toolchain.toml

Because we're using the C-unwind ABI, this crate must be used on a Nightly Rust compiler.

[toolchain]
channel = "nightly"

Cargo.toml

[lib]
crate-type = ["cdylib"]

[dependencies]
gmod = "*"

lib.rs

#![feature(c_unwind)]

#[macro_use]
extern crate gmod;

#[gmod13_open]
fn gmod13_open(lua: gmod::lua::State) -> i32 {
    println!("Hello from binary module!");
    0
}

#[gmod13_close]
fn gmod13_close(lua: gmod::lua::State) -> i32 {
    println!("Goodbye from binary module!");
    0
}