Skip to main content

luaur_vm/macros/
registry.rs

1#[allow(non_snake_case)]
2#[macro_export]
3macro_rules! registry {
4    ($L:expr) => {
5        &(*(*$L).global).registry
6    };
7}
8
9pub use registry;