edict 1.0.0-rc9

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

use edict::{
    system::{system, ResLocal},
    view::View,
};

struct A(*mut u8);

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

fn main() {}