light/Engine/src/Platform/GraphicsAPI/OpenGL/glGraphicsContext.h

19 lines
266 B
C
Raw Normal View History

2021-05-26 18:39:40 +04:30
#pragma once
#include "Base.h"
#include "Graphics/GraphicsContext.h"
struct GLFWwindow;
namespace Light {
class glGraphicsContext : public GraphicsContext
{
private:
GLFWwindow* m_WindowHandle;
public:
glGraphicsContext(GLFWwindow* windowHandle);
};
}