use crate::common_usings::*; script!(Hail, "hail"); impl Script for Hail { fn new() -> Self where Self: Sized, { Self {} } fn get_name(&self) -> &'static str { Self::get_const_name() } fn get_capabilities(&self) -> &[ScriptCapabilities] { todo!() } fn as_any(&self) -> &dyn Any { self } }