#![cfg_attr(docsrs, feature(doc_auto_cfg))]
extern crate proc_macro;
mod animation_event;
use proc_macro::TokenStream;
#[proc_macro_derive(AnimationEvent)]
pub fn derive_animation_event(input: TokenStream) -> TokenStream {
animation_event::derive_animation_event(input)
}