Move ggez example to tour

This commit is contained in:
Héctor Ramón Jiménez 2019-09-05 07:23:03 +02:00
parent 3440ba3cb4
commit ced3ffc225
11 changed files with 0 additions and 0 deletions

14
examples/tour/widget.rs Normal file
View file

@ -0,0 +1,14 @@
use super::Renderer;
use ggez::graphics::{self, Color};
pub use iced::{button, slider, Button, Slider};
pub type Text = iced::Text<Color>;
pub type Checkbox<Message> = iced::Checkbox<Color, Message>;
pub type Radio<Message> = iced::Radio<Color, Message>;
pub type Image = iced::Image<graphics::Image>;
pub type Column<'a, Message> = iced::Column<'a, Message, Renderer<'a>>;
pub type Row<'a, Message> = iced::Row<'a, Message, Renderer<'a>>;
pub type Element<'a, Message> = iced::Element<'a, Message, Renderer<'a>>;