s-engine 0.1.3

best performance best clean code best game engine for rust languige
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub fn hello_world() {
    println!("Hello, World!");
}

pub fn run_engine(f: fn() -> bool) {
    let x = f();
    if x {
        println!("Hello, World!");
    } else {
        println!("false!");
    }
}