Files
Modularity/include/Window/Window.h
sonakrie ec1610443c
Some checks failed
Build C++ Project with Fedora Container and Create Release / build (push) Has been cancelled
Add everything.
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