hexga_engine_window/lib.rs
1//! Window / Events interface for the Hexga Engine based on [MiniQuad](https://github.com/not-fl3/miniquad)
2#![allow(unused_imports)]
3
4mod window;
5pub use window::*;
6
7
8#[cfg(feature = "serde")]
9use serde::{Serialize, Serializer, Deserialize, Deserializer, de::Visitor, ser::SerializeStruct};
10
11#[cfg(feature = "hexga_io")]
12use hexga_io::{IoSave, IoLoad, Save, Load};
13
14
15pub mod prelude
16{
17 pub use crate::window::{ContextWindow,WindowParam};
18}
19
20/// Modules/Items without the prelude
21#[doc(hidden)]
22pub mod modules
23{
24 pub use super::window::*;
25}