bevycheck 0.5.2

Helpful bevy error messages by proc-macro
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(unused)]
use bevy::prelude::*;

#[derive(Component)]
struct Component;

#[derive(Resource)]
struct Resource;

// #[bevycheck::system]
fn system(commands: Commands, query: Query<&Component>) {}

fn main() {
    App::new().add_system(system).run();
}