CSEngine
Loading...
Searching...
No Matches
MainProc.h
1#pragma once
2
3#include "../OGLDef.h"
4
5namespace CSE {
6
7 class MainProc {
8 public:
9 MainProc();
10
11 ~MainProc();
12
13 void Init(GLuint width, GLuint height);
14
15 void ResizeWindow(GLuint width, GLuint height) const;
16
17 void Update(float elapsedTime);
18
19 void Render(float elapsedTime) const;
20
21 void GenerateCores();
22
23 void Exterminate();
24 };
25
26}