hexga_engine_window 0.0.10-beta.16

Window interface for the Hexga Engine
Documentation
//! Window / Events interface for the Hexga Engine based on [MiniQuad](https://github.com/not-fl3/miniquad)
#![allow(unused_imports)]

mod window;
pub use window::*;


#[cfg(feature = "serde")]
use serde::{Serialize, Serializer, Deserialize, Deserializer, de::Visitor, ser::SerializeStruct};

#[cfg(feature = "hexga_io")]
use hexga_io::{IoSave, IoLoad, Save, Load};


pub mod prelude
{
    pub use crate::window::{ContextWindow,WindowParam};
}

/// Modules/Items without the prelude
#[doc(hidden)]
pub mod modules
{
    pub use super::window::*;
}