inda21plusplus / Project-Delta

This is the repository for the group project assignment in the course "Project in Introduction to Computer Science" (DD1396), by the Inda21plusplus group.
MIT License
8 stars 0 forks source link

ECS - Query for Combinations of Entities #33

Closed foodelevator closed 2 years ago

foodelevator commented 2 years ago

(Depends on #28)

Add functionality to query for all combinations of tuples of entities.

For example: given the entities A, B, and C, yield (A, B), (A, C), (B, C), allowing for mutable access to them.

I ඞpect this will be needed before integrating the ECS with the physics

foodelevator commented 2 years ago

Perhaps it would be nice to generalize this to yielding tuples of variable length?

But I don't think it's worth it at the moment.