hecs 0.11.0

A fast, minimal, and ergonomic entity-component-system library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use hecs::{Bundle, Query};

#[derive(Query)]
union Foo {
    u8: u8,
}

#[derive(Bundle)]
union Bar {
    u8: u8,
}

fn main() {}