start_script

Macro start_script 

Source
macro_rules! start_script {
    (
        $( #[$attr:meta] )*
        $pub:vis
        async
        fn start<$lt:lifetime> ($this:tt : $this_ty:ty, $engine_globals:tt : $engine_globals_ty:ty) -> Swap
        {
            $($body:tt)*
        }
    ) => { ... };
}