blob: 943d9f0de44cb04f2f7894f2eedfe9068bb34b38 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/// The platform specific window settings of an application.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub struct PlatformSpecific;
impl From<PlatformSpecific> for iced_winit::settings::PlatformSpecific {
fn from(_: PlatformSpecific) -> Self {
Default::default()
}
}
|