Gen7ScriptsRs/pkmn_lib_interface/src/app_interface/static_data/mod.rs

17 lines
303 B
Rust
Raw Normal View History

2022-08-14 11:37:17 +00:00
pub mod ability;
pub mod data_libraries;
pub mod effect_parameter;
pub mod item;
pub mod move_data;
2022-08-14 11:37:17 +00:00
mod nature;
pub mod species;
pub use data_libraries::*;
pub use effect_parameter::EffectParameter;
pub use item::*;
pub use move_data::*;
2022-08-14 11:37:17 +00:00
pub use nature::*;
pub use species::*;
2022-08-14 11:37:17 +00:00
pub type LevelInt = u8;