hexga_engine_core 0.0.10-beta.16

The Core the Hexga Game Engine, implementation free without RAII
Documentation
use crate::*;

pub trait ContextMultiMedia : ContextWindow + RenderBackend {}
impl<T> ContextMultiMedia for T where T: ContextWindow + RenderBackend {}

use modules::*;

pub mod prelude
{
    use crate::*;
    pub use super::{ContextMultiMedia};
}

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