bevycheck 0.5.2

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

struct Foo;

#[bevycheck::system]
fn system(_: Foo) {}

fn main() {
    IntoSystem::into_system(system);
}