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