Files
Modularity/include/Window/Window.h
2025-11-30 23:02:25 +01:00

12 lines
217 B
C++

#ifndef WINDOW_H
#define WINDOW_H
#include "../General/GlobalHeaders.h"
#include <glad/glad.h>
#include "../../src/ThirdParty/glfw/include/GLFW/glfw3.h"
class Window {
public:
GLFWwindow* makeWindow();
};
#endif