Skip to content
/ dacho Public

ECS Game Engine

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

mochou-p/dacho

Repository files navigation

dacho

What is it

An ECS game engine, written in pure Rust

Disclaimer

This project is in it's early stage, expect breaking changes
There is no documentation yet (other than the example)

Usage

In dacho, you insert Systems into Schedules

// A simple example

use dacho::*;


fn main() {
    let mut app = App::new("my game");

    app.world.spawn(...); // entity: tuple of components

    app.insert(...);      // system: function with queries

    app.run();
}

See the example for more

Cargo features

A checked box means the feature is enabled by default

Notes

  • It is recommended to open dacho projects as floating in tiling WMs

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions