Ive two entities: EntityA and EntityB. EntityA need selectors from EntityB in order to compose a new one. Then, on EntityB we need selectors from EntityA in order to compose a new one. That generates a circular dependency error.
Whats the best aproach to solve the problem? Yeah, i know i can move the dependent selectors to the same Entity<>.selectors file but i dont like it. I've thought about creating a file that only contains common selectors between entities.