iced-yoda/core/src/font.rs

9 lines
141 B
Rust
Raw Normal View History

#[derive(Debug, Clone, Copy)]
pub enum Font {
Default,
External {
name: &'static str,
bytes: &'static [u8],
},
}