kero 0.1.12

A simple, approachable framework for creating 2D games in Rust and/or Lua.
Documentation
//! The framework's core systems.

mod app_handler;
mod context;
mod cursor_icon;
mod display_mode;
mod frame_timer;
mod game;
mod game_builder;
mod game_error;
mod monitor;
mod time;
mod video_mode;
mod window;

#[cfg(feature = "lua")]
mod lua_app;

pub use context::*;
pub use cursor_icon::*;
pub use display_mode::*;
pub use game::*;
pub use game_builder::*;
pub use game_error::*;
pub use monitor::*;
pub use time::*;
pub use video_mode::*;
pub use window::*;

#[cfg(feature = "lua")]
pub(crate) use lua_app::*;