summaryrefslogtreecommitdiff
path: root/engine-macros/src/lib.rs
blob: 5d16ad276f87e95c5e30970fa648bb61d846a17c (plain)
1
2
3
4
5
6
7
8
9
10
#![deny(clippy::all, clippy::pedantic)]

mod reflection;
mod util;

#[proc_macro_derive(Reflection)]
pub fn reflection_derive(input: proc_macro::TokenStream) -> proc_macro::TokenStream
{
    reflection::derive(input.into()).into()
}