edict 0.6.1

Experimental entity-component-system library
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(dead_code)]

use edict::{system, ResNoSync, View};

struct A(*mut u8);

#[system]
fn foo(_a: View<&u32>, _b: ResNoSync<A>) {}

fn main() {}