hai_core 0.7.0

Core implementation of Hai game engine, and general 2D rendering library using WebGPU as well.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(all(not(feature = "web"), feature = "js_runtime"))]
mod command;
mod focusable;
mod node;
mod plugin;
mod renderable;
mod renderer;

#[cfg(all(not(feature = "web"), feature = "js_runtime"))]
pub use command::*;
pub use focusable::*;
pub use node::*;
pub use plugin::*;
pub use renderable::*;
pub use renderer::*;