Add platform specific settings

This commit is contained in:
hatoo 2019-11-30 21:32:46 +09:00
parent f0a857ddde
commit 5077f1dc6a
9 changed files with 106 additions and 0 deletions

View file

@ -0,0 +1,6 @@
#![cfg(not(target_os = "windows"))]
//! Platform specific settings for not Windows.
/// The platform specific window settings of an application.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub struct PlatformSpecific {}