legion 0.4.0

High performance entity component system (ECS) library
Documentation
1
2
3
4
5
6
7
8
#![allow(unused_imports)]

use legion::{system, systems::CommandBuffer, Entity};

#[system(par_for_each)]
fn for_each(_: &Entity, _: &mut CommandBuffer) {}

fn main() {}