bevy_auto_plugin 0.10.0

Procedural attribute macros for Bevy apps that reduce boilerplate by automatically registering components, resources, events, states, and systems in your plugin's build function.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use internal_test_util::{
    ui_tests,
    ui_util::UiTest,
};

struct UiTests;

impl UiTest for UiTests {
    fn file_path() -> &'static str {
        file!()
    }
}

ui_tests!(UiTests);