PkmnLib_rs/src/static_data/libraries/library_settings.rs

8 lines
157 B
Rust
Raw Normal View History

use crate::defines::LevelInt;
use derive_getters::Getters;
#[derive(Getters, Debug)]
pub struct LibrarySettings {
pub(crate) maximum_level: LevelInt,
}