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

15 lines
490 B
Rust
Raw Normal View History

2022-10-15 15:21:24 +00:00
/// The foreign function interface for a battle.
mod battle;
2022-10-15 09:51:44 +00:00
/// The foreign function interface for a battle wrapper of a party.
mod battle_party;
/// The foreign function interface for a battle event
mod event;
2022-10-15 08:25:40 +00:00
/// The foreign function interface for a Learned Move.
mod learned_move;
2022-10-15 15:21:24 +00:00
/// Wrapper classed for the event hooks.
mod native_event_hook;
2022-10-14 14:53:30 +00:00
/// The foreign function interface for a Pokemon.
2022-10-14 11:59:04 +00:00
mod pokemon;
/// The foreign function interface for a party of Pokemon.
mod pokemon_party;