PkmnLib_rs/src/ffi/dynamic_data/models/mod.rs

15 lines
490 B
Rust

/// The foreign function interface for a battle.
mod battle;
/// The foreign function interface for a battle wrapper of a party.
mod battle_party;
/// The foreign function interface for a battle event
mod event;
/// The foreign function interface for a Learned Move.
mod learned_move;
/// Wrapper classed for the event hooks.
mod native_event_hook;
/// The foreign function interface for a Pokemon.
mod pokemon;
/// The foreign function interface for a party of Pokemon.
mod pokemon_party;