hide cursor

This commit is contained in:
🪞👃🪞 2024-09-06 23:35:56 +03:00
parent 4855609a7d
commit ff97070a03
2 changed files with 7 additions and 7 deletions

View file

@ -1,6 +1,6 @@
use crate::*;
/// Compute drawing area before rendering
/// Trait for structs that compute drawing area before rendering
pub trait Layout<E: Engine>: Render<E> {
fn layout (&self, area: impl Rectangle<E::Unit>) -> Perhaps<impl Rectangle<E::Unit>>;
}