Skip to main content

luaur_vm/macros/
setttype.rs

1use crate::macros::ttype::ttype;
2
3#[allow(non_snake_case)]
4#[macro_export]
5macro_rules! setttype {
6    ($obj:expr, $tt:expr) => {
7        (*$obj).set_tt($tt);
8    };
9}
10
11pub use setttype;