bevy_commandify 0.3.0

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

#[entity_command]
fn foo(world: &mut World) { }

/// Test that an entity_command requires an `Entity` fn parameter
fn main() { }