fui_core 0.1.0

Core library of FUI MVVM UI Framework
Documentation
1
2
3
4
5
6
use crate::Resources;

pub trait DrawingContext {
    fn get_drawing_area_size(&self) -> (u16, u16);
    fn get_resources(&mut self) -> &mut dyn Resources;
}