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