ferx/engine/include/Engine.h
2024-07-30 20:57:32 +04:00

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