PkmnLib_rs/src/static_data/moves/mod.rs

10 lines
235 B
Rust
Raw Normal View History

#[doc(inline)]
pub use move_data::*;
#[doc(inline)]
pub use secondary_effect::*;
2022-06-11 18:51:37 +00:00
2022-07-01 16:20:16 +00:00
/// The data belonging to a certain move.
mod move_data;
2022-07-01 16:20:16 +00:00
/// A secondary effect is an effect on a move that happens after it hits.
mod secondary_effect;