...pointer to the screen surface?
Or
Am I not grasping OOP
Any help or advice on this would be great.
CODE
class fontMaker{
private:
TTF_Font* font;
public:
void LoadFont(char*,int);
void drawText(SDL_Surface*, char*, int, int, int, int, int);
void renderText();
};
void...