Closed nelson137 closed 7 months ago
Closes #16
Add a procedural derive macro to generate an impl SystemParam for structs.
impl SystemParam
Allows jumpy to replace this:
impl_system_param! { struct MySystemParam<'a> { commands: Commands<'a>, entities: ResMut<'a, Entities>, } }
with this:
#[derive(SystemParam)] struct MySystemParam<'a> { commands: Commands<'a>, entities: ResMut<'a, Entities>, }
Closes #16
Add a procedural derive macro to generate an
impl SystemParam
for structs.Allows jumpy to replace this:
with this: