Is there any difference between these:
struct Class* CreateClass();
and:
Class* CreateClass();
It's just a factory function declaration. You can see that one has struct at the start and one doesn't. I've tried it both ways and it doesn't seem to make a difference.
Which should I be using?