gmod-rs/README.md

38 lines
629 B
Markdown
Raw Normal View History

2021-10-20 17:44:59 -04:00
[![crates.io](https://img.shields.io/crates/v/gmod.svg)](https://crates.io/crates/gmod)
[![docs.rs](https://docs.rs/gmod/badge.svg)](https://docs.rs/gmod)
2021-09-09 16:50:58 -04:00
# ⚙ gmod-rs
A swiss army knife for creating binary modules for Garry's Mod in Rust.
2021-10-20 17:44:59 -04:00
# Example
### Cargo.toml
```toml
[lib]
crate-type = ["cdylib"]
[dependencies]
gmod = "*"
```
### lib.rs
```rust
#[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
}
```