Some checks failed
Build C++ Project with Fedora Container and Create Release / build (push) Has been cancelled
12 lines
217 B
C++
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 |