gmodx 0.3.0

A swiss army knife for creating binary modules for Garry's Mod in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod lua;
pub mod lua_shared;
pub use lua_shared::LUA_SHARED;
mod macros;
pub mod open_close;
pub use open_close::{is_closed, is_open};

mod next_tick;
pub use next_tick::{flush_next_tick, next_tick};

pub mod next_tick_queue;

pub use gmodx_macros::*;

pub use inventory;

#[cfg(feature = "tokio-tasks")]
pub mod tokio_tasks;