22 lines
260 B
C
22 lines
260 B
C
|
#ifndef ENGINE_H
|
||
|
#define ENGINE_H
|
||
|
|
||
|
#include <GLFW/glfw3.h>
|
||
|
#include "Graphics.h"
|
||
|
|
||
|
class Engine
|
||
|
{
|
||
|
public:
|
||
|
Engine();
|
||
|
~Engine();
|
||
|
|
||
|
void Initialize(GLFWwindow* window);
|
||
|
void Render();
|
||
|
void Shutdown();
|
||
|
|
||
|
private:
|
||
|
Graphics graphics;
|
||
|
};
|
||
|
|
||
|
#endif
|