yuno 0.1.0

A declarative UI layout and rendering framework powered by Skia.
1
2
3
4
5
6
7
8
pub mod cursor_decoder;

use crate::drawing::Drawable;

pub trait CursorInteractive: Drawable {
    // A control must first be `Drawable` and have a planned drawing area before it can be interacted with via Cursor.
    // TODO
}