-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCApp.cpp
48 lines (35 loc) · 873 Bytes
/
CApp.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//==============================================================================
#include "CApp.h"
//==============================================================================
CApp::CApp()
{
Surf_Display = NULL;
Running = true;
}
//------------------------------------------------------------------------------
int CApp::OnExecute()
{
if(OnInit() == false)
{
return -1;
}
SDL_Event Event;
while(Running)
{
while(SDL_PollEvent(&Event))
{
OnEvent(&Event);
}
OnLoop();
OnRender();
}
OnCleanup();
return 0;
}
//==============================================================================
int main(int argc, char* argv[])
{
CApp theApp;
return theApp.OnExecute();
}
//==============================================================================