Easily define behavior for sets of components when using the hecs ECS library.
```rust use hecscomponentprovider::{ defaulttraitimpl, gentuplequerycomponentproviders, ComponentProvider, ComponentProviderMut };
struct Position(f32, f32); struct Velocity(f32, f32);
// implement a behavior for all entities that provide the required components
trait Update: ComponentProviderMut
let mut world = hecs::World::new(); world.spawn((Position(1.0, 2.0), Velocity(0.7, 0.8)));
// prepare a query that returns entities with the components required for the Update behavior gentuplequerycomponentproviders!( Query, (&mut Position, &Velocity) );
let dt = 0.1;
for (, mut entity) in world.querymut::
let position = entity.0;
assert_eq!(position.0, 1.07);
assert_eq!(position.1, 2.08);
} ```