ThreeLab/ProtoEngine/engine/engine.h

21 lines
417 B
C
Raw Normal View History

2025-04-01 01:25:39 +00:00
#pragma once
#include <GLFW/glfw3.h>
class Engine {
public:
// Initializes GLFW, creates a window, and sets up the OpenGL context.
static bool Init();
// Clears the screen.
static void BeginFrame();
// Swaps buffers and polls for events.
static void EndFrame();
// Returns the pointer to the GLFW window.
static GLFWwindow* GetWindow();
private:
static GLFWwindow* window;
};