remove glfw+gl from forge.c

This commit is contained in:
2025-09-13 16:51:18 +02:00
parent 68ad351d2f
commit f5919f3231
6 changed files with 83 additions and 30 deletions
+10
View File
@@ -7,4 +7,14 @@ Window *init_window(Parameters params,
void (*error_callback)(int, const char *),
void (*key_callback)(Window *, int, int, int, int));
void update_window(Window *window);
Context get_window_context(Window *window);
void close_window(Window *window, bool hard);
bool window_should_close(Window *window);
bool escape_key(int key, int action);
#endif