Member Function Thingy
Feb 17, 2013 at 9:30am
class:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
class CApp {
private:
bool Running;
SDL_Surface* Surf_Display;
public:
CApp();
int OnExecute();
public:
bool OnInit();
void OnEvent(SDL_Event* Event);
void OnLoop();
void OnRender();
void OnCleanup();
};
|
other that might be needed:
1 2 3 4 5
|
CApp::CApp() {
Surf_Display = NULL;
Running = true;
}
|
Can someone please tell me exactly what CApp().
Feb 17, 2013 at 10:24am
It is a constructor. It is called when an object of class CApp created.
Feb 17, 2013 at 9:24pm
Thanks for the help.
Topic archived. No new replies allowed.