ventana-hal 0.0.1

A cross-platform, iterator-based windowing library
Documentation
use {
  crate::types::{
    Flow,
    Visibility,
  },
  dpi::{
    Position,
    Size,
  },
  smol_str::SmolStr,
};

#[derive(Debug, Clone)]
pub struct WindowSettings {
  pub title: SmolStr,
  pub size: Size, // Maybe should make this optional and have backend handle None case
  pub position: Option<Position>,
  pub visibility: Visibility,
  pub flow: Flow,
  pub close_on_x: bool,
}

impl WindowSettings {}