hewn/
lib.rs

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