diff options
Diffstat (limited to 'core/src/Entrypoint/OpenGL3.hpp')
-rw-r--r-- | core/src/Entrypoint/OpenGL3.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/core/src/Entrypoint/OpenGL3.hpp b/core/src/Entrypoint/OpenGL3.hpp new file mode 100644 index 0000000..29086a2 --- /dev/null +++ b/core/src/Entrypoint/OpenGL3.hpp @@ -0,0 +1,15 @@ +#pragma once + +#include "Entrypoint/Common.hpp" + +#include <glad/glad.h> + +#include <GLFW/glfw3.h> + +class OpenGL3Backend : public RenderingBackend { +public: + OpenGL3Backend(); + virtual ~OpenGL3Backend() ; + virtual void BeginFrame() override; + virtual void EndFrame() override; +}; |