Add hover styling support

This commit is contained in:
Nathan Sobo 2023-08-23 09:08:05 -06:00
parent 1bc4f22373
commit 569d99a5a1
8 changed files with 53 additions and 22 deletions

View file

@ -195,6 +195,10 @@ impl super::Platform for Platform {
Ok(())
}
fn mouse_position(&self) -> Vector2F {
Vector2F::zero()
}
fn set_cursor_style(&self, style: CursorStyle) {
*self.cursor.lock() = style;
}