10 lines
235 B
Rust
10 lines
235 B
Rust
#[doc(inline)]
|
|
pub use move_data::*;
|
|
#[doc(inline)]
|
|
pub use secondary_effect::*;
|
|
|
|
/// The data belonging to a certain move.
|
|
mod move_data;
|
|
/// A secondary effect is an effect on a move that happens after it hits.
|
|
mod secondary_effect;
|