blob: 225f7e6cda14c65e7f03f5e5b2aea4bf24c3c9fd (
plain) (
blame)
1
2
3
4
5
6
7
8
|
use crate::{Primitive, Renderer};
use iced_native::{mouse, space, Rectangle};
impl space::Renderer for Renderer {
fn draw(&mut self, _bounds: Rectangle) -> Self::Output {
(Primitive::None, mouse::Interaction::default())
}
}
|