diff options
Diffstat (limited to 'examples/ggez/widget.rs')
-rw-r--r-- | examples/ggez/widget.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/ggez/widget.rs b/examples/ggez/widget.rs index 657a3190..00c013d4 100644 --- a/examples/ggez/widget.rs +++ b/examples/ggez/widget.rs @@ -3,3 +3,4 @@ use ggez::graphics::Color; pub use iced::{button, Button, Column, Row}; pub type Text = iced::Text<Color>; +pub type Checkbox<Message> = iced::Checkbox<Color, Message>; |