Hi, if i create 2 components like this:
#[derive(Component)]
pub struct Direction;
#[derive(Component)]
pub struct Orientation(pub Direction);
What happens if I assign Orientation to an entity? will they also get the Direction component?
My experiments seem to suggest that no (because I added a system that acts exclusively on Direction, and my entities with Orientation don't seem to be affected), but I'd like to be sure.
Is this mentioned in the docs somewhere?