-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCApp.h
53 lines (31 loc) · 842 Bytes
/
CApp.h
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
49
50
51
52
53
//==============================================================================
// SDL Tutorial 8
//==============================================================================
#ifndef _CAPP_H_
#define _CAPP_H_
#include <SDL.h>
#include <SDL_ttf.h>
#include "Define.h"
#include "CAppStateManager.h"
#include "CFPS.h"
#include "CEvent.h"
#include "CSurface.h"
//==============================================================================
class CApp : public CEvent
{
private:
bool Running;
SDL_Surface* Surf_Display;
public:
CApp();
int OnExecute();
public:
bool OnInit();
void OnEvent(SDL_Event* Event);
void OnExit();
void OnLoop();
void OnRender();
void OnCleanup();
};
//==============================================================================
#endif