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