zengine 0.1.2

A simple 2D ECS game engine
Documentation
1
2
3
4
5
6
7
8
9
10
use zengine::Engine;

#[cfg(not(target_os = "android"))]
fn main() {
    Engine::default().add_system(hello_world_system).run();
}

fn hello_world_system() {
    println!("hello world");
}