Gen7ScriptsRs/gen_7_scripts/src/weather/hail.rs

25 lines
374 B
Rust

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
}
}