Files
PkmnLib_rs/src/static_data/moves/mod.rs
Deukhoofd 4ec07ca049
Some checks failed
continuous-integration/drone/push Build is failing
Large amounts of work on Rune
2024-05-08 15:46:09 +02:00

15 lines
341 B
Rust
Executable File

#[doc(inline)] pub use move_data::*;
#[doc(inline)] pub use secondary_effect::*;
#[cfg(test)]
pub(crate) mod tests {
use super::*;
#[doc(inline)] pub use move_data::tests::*;
}
/// 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;