Function game_library::settings::next_font_choice
source · pub const fn next_font_choice(font_choice: FontChoice) -> FontChoice
Expand description
Rotates through the font choices.
If given FontChoice::All
, it will return FontChoice::Display
(All is not a valid choice).
Example
use game_library::{font_resource::FontChoice, settings::next_font_choice};
assert_eq!(next_font_choice(FontChoice::Display), FontChoice::Interface);
assert_eq!(next_font_choice(FontChoice::Interface), FontChoice::Main);
assert_eq!(next_font_choice(FontChoice::Main), FontChoice::Console);
assert_eq!(next_font_choice(FontChoice::Console), FontChoice::Display);
assert_eq!(next_font_choice(FontChoice::All), FontChoice::Display);