bevy_commandify 0.3.0

A macro for creating bevy commands
Documentation
1
2
3
4
5
6
7
use bevy_commandify::*;

#[command(name = foo::bar)]
fn foo(world: &mut World) { }

/// Test that a multi-part path fails
fn main() { }