schroedinger-solver/src/renderer/window.h
2022-10-16 23:43:22 +02:00

9 lines
211 B
C

#ifndef WINDOW_H
#define WINDOW_H
typedef struct GLFWwindow GLFWwindow;
GLFWwindow* create_managed_window(const char* title, int width, int height);
void destroy_window(GLFWwindow* window);
#endif // WINDOW_H