schroedinger-solver/src/renderer/window.h

9 lines
211 B
C
Raw Normal View History

2022-10-16 12:13:13 +00: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 21:43:22 +00:00
void destroy_window(GLFWwindow* window);
2022-10-16 12:13:13 +00:00
#endif // WINDOW_H