Deukhoofd b1890681a1
All checks were successful
continuous-integration/drone/push Build is passing
A lot more work on WASM script execution
2022-09-07 18:01:26 +02:00

26 lines
700 B
Rust
Executable File

#[doc(inline)]
pub use choices::*;
#[doc(inline)]
pub use event_hooks::*;
#[doc(inline)]
pub use flow::*;
#[doc(inline)]
pub use libraries::*;
#[doc(inline)]
pub use models::*;
#[doc(inline)]
pub use script_handling::*;
/// Holds different choices Pokemon can use during battle.
mod choices;
/// Holds data to callback events from the battle to clients.
mod event_hooks;
/// Holds logic on how the battle is executed.
mod flow;
/// Holds information regarding data that is required for battle execution.
pub(crate) mod libraries;
/// Holds different struct types that are required for functioning.
mod models;
/// Holds information for dynamic runtime behaviour during battles.
mod script_handling;