A lot of work on type registration
This commit is contained in:
16
pkmn_lib_interface/src/app_interface/static_data/mod.rs
Normal file
16
pkmn_lib_interface/src/app_interface/static_data/mod.rs
Normal 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;
|
||||
Reference in New Issue
Block a user