2022-10-16 14:13:13 +02:00
|
|
|
#ifndef WINDOW_H
|
|
|
|
#define WINDOW_H
|
|
|
|
|
|
|
|
typedef struct GLFWwindow GLFWwindow;
|
|
|
|
|
|
|
|
GLFWwindow* create_managed_window(const char* title, int width, int height);
|
2022-10-16 23:43:22 +02:00
|
|
|
void destroy_window(GLFWwindow* window);
|
2022-10-16 14:13:13 +02:00
|
|
|
|
|
|
|
#endif // WINDOW_H
|