> In C+ how should you separate your classes?

In C+ how should you separate your classes?

Posted at: 2014-12-18 
In game development specifically.

I usually just have one folder dedicated to all actions and another one for requests.

Like getcharacterposition() in requests class and movecharacter() and displaytoscreen() in the actions class. So basically the actions class is the main one that's just flooded with functions. But I want to move into more OOP and I'm having trouble how I should separate anything into more classes. I don't think I have enough classes.