PkmnLib_rs/src/dynamic_data/script_handling/script_set.rs

15 lines
258 B
Rust
Raw Normal View History

2022-06-03 14:35:18 +00:00
use crate::dynamic_data::script_handling::script::Script;
#[derive(Debug)]
pub struct ScriptSet {}
2022-06-03 14:35:18 +00:00
impl ScriptSet {
pub fn count(&self) -> usize {
todo!()
}
pub fn at(&self, _index: usize) -> &Box<dyn Script> {
todo!()
}
}