ferx/engine/include/Engine.h

22 lines
260 B
C
Raw Normal View History

#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