summaryrefslogblamecommitdiffstats
path: root/core/src/font.rs
blob: 75ba6a725257de884cb82e0af137c6a5a6f21215 (plain) (tree)
1
2
3
4
5
6
7
8







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