A lot of work on type registration

This commit is contained in:
2022-08-14 13:37:17 +02:00
parent 174137dcf6
commit f06d46d854
39 changed files with 1910 additions and 361 deletions

View File

@@ -0,0 +1,16 @@
pub mod ability;
pub mod data_libraries;
pub mod effect_parameter;
pub mod item;
pub mod move_data;
mod nature;
pub mod species;
pub use data_libraries::*;
pub use effect_parameter::EffectParameter;
pub use item::*;
pub use move_data::*;
pub use nature::*;
pub use species::*;
pub type LevelInt = u8;