hewn 0.1.0-alpha.3

A simple game engine built for educational purposes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Hewn
//!
//! **Status:** Alpha – experimental crate for educational purposes.
//!
//! Hewn is a crate for making games, with support for terminal and web runtimes.
//!
//! Hewn aims to be a simple and flexible game engine, with a focus on readability and
//! maintainability.
//!
//! For more information, see the [README](https://github.com/joshua-mason/hewn).

mod engine;

pub mod runtime;
pub mod terminal;
pub mod wgpu;

pub use engine::ecs;