blob: 5771df3a1b11582928b14dfe66581214ff4a3372 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// external libs
#include "glad/glad.h"
#include "GLFW/glfw3.h"
namespace Ogle
{
namespace Window {
GLFWwindow* get();
int init(
unsigned int width,
unsigned int height,
const char* title
);
}
}
|