hexga_engine 0.0.11-beta.53

A multimedia game and software engine for handling graphics, audio, and input.
Documentation
pub use super::*;

mod app_window;
pub use app_window::*;

mod winit_convet;
pub use winit_convet::*;

#[derive(Debug, Clone, PartialEq)]
pub enum WindowEvent
{
    Resize(Point2),
    Move(Point2),
    Open,
    Close,
    Destroy,
    Draw,
}

pub mod prelude
{
    pub(crate) use super::*;
    pub use super::{WindowEvent, WindowExtension, WindowParamBuilder};
}