Is there a way to have a class or struct containing things like Sprites, AnimatorControllers, etc. without having to manage Monobehaviour?
The problem I have with the Monobehaviour approach is that I am forced to add a component to a gameobject in order to be able to add it to an Entity via AddComponentObject. Sometimes I just want to store a sprite for later use and therefore do not need the bloat of Monobehaviour.
It would be nice to have something like IComponentObjectData structs that can hold Unity objects references. It would be easier to convert once their DOTS-friendly equivalents are rolled out.